/* ANETI Clube de Vantagens - Custom CSS */

:root {
    --aneti-primary: #8B5CF6;
    --aneti-primary-dark: #7C3AED;
    --aneti-primary-light: #A78BFA;
    --aneti-purple-gradient: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #9333EA 100%);
    --aneti-secondary: #6c757d;
    --aneti-success: #28a745;
    --aneti-warning: #ffc107;
    --aneti-danger: #dc3545;
    --aneti-info: #17a2b8;
    --aneti-light: #f8f9fa;
    --aneti-dark: #343a40;
    --aneti-white: #ffffff;
}

/* Bootstrap color overrides */
.btn-primary,
.bg-primary {
    background-color: var(--aneti-primary) !important;
    border-color: var(--aneti-primary) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--aneti-primary-dark) !important;
    border-color: var(--aneti-primary-dark) !important;
}

.text-primary {
    color: var(--aneti-primary) !important;
}

/* Header styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 140px;
}

/* Mobile Header Override */
@media (max-width: 767.98px) {
    .main-header {
        height: 60px !important;
    }
    
    body {
        padding-top: 60px !important;
    }
}

/* Header Actions Buttons */
.header-actions .login-button {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.header-actions .login-button:hover {
    background: rgba(255,255,255,0.3);
    color: white;
}

.header-actions .partner-button {
    background: white;
    color: #012d6a;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-actions .partner-button:hover {
    background: #f8f9fa;
    color: #012d6a;
}

/* Categories Bar */
.categories-bar {
    padding: 12px 0;
    background: rgba(255,255,255,0.1);
}

.categories-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    min-width: 80px;
}

.category-item:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    transform: translateY(-2px);
}

.category-item i {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.category-item span {
    font-weight: 500;
}

/* Hide desktop categories on mobile and fix body padding */
@media (max-width: 767.98px) {
    .categories-bar {
        display: none !important;
    }
    
    .categories-menu {
        display: none !important;
    }
    
    /* Fix body padding for mobile */
    body {
        padding-top: 60px !important;
    }
    
    /* Ensure mobile menu is properly positioned */
    .mobile-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1050 !important;
        background: linear-gradient(to right, #012d6a, #25a244) !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    }
}

.navbar-brand .logo {
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

/* Header com Degradê - Modelo Referência */
.gradient-header {
    background: linear-gradient(to right, #012d6a, #25a244);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1030;
}

/* Linha 1: Barra Superior */
.header-top-bar {
    padding: 8px 0;
}

.brand-section {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: none; /* Logo removida */
}

.brand-name {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

/* Campo de Busca Central */
.search-container {
    max-width: 400px;
    margin: 0 auto;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 10px 50px 10px 15px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

/* Botões do Header */
.login-button {
    background: rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
}

.login-button:hover {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    transform: translateY(-1px);
}

.partner-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
}

.partner-button:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-1px);
}

/* Linha 2: Menu de Categorias */
.categories-bar {
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
}

.categories-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    overflow-x: auto;
    padding: 0 15px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 6px;
    border-radius: 8px;
    min-width: 70px;
    flex-shrink: 0;
}

.category-item:hover,
.category-item.active {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.category-item.active {
    background: rgba(255, 255, 255, 0.25);
}

.category-item i {
    font-size: 20px;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.category-item:hover i {
    transform: scale(1.1);
}

.category-item span {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .header-top-bar .row {
        flex-direction: column;
        gap: 15px;
    }
    
    .brand-section {
        justify-content: center;
    }
    
    .header-actions {
        text-align: center !important;
    }
    
    .header-actions .login-button,
    .header-actions .partner-button {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .categories-menu {
        gap: 20px;
        justify-content: flex-start;
    }
    
    .category-item {
        min-width: 60px;
    }
    
    .category-item span {
        font-size: 10px;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
}

/* Scrollbar para categorias em mobile */
.categories-menu::-webkit-scrollbar {
    height: 4px;
}

.categories-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.categories-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Banner Slides System */
.banner-slides {
    width: 100%;
    margin: 0;
    padding: 0;
}

.banner-slide-image {
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

/* Slide padrão quando não há slides ativos */
.default-slide {
    background: linear-gradient(135deg, var(--aneti-primary) 0%, #0056b3 100%);
    position: relative;
}

.default-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    color: white;
    z-index: 2;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
}

.banner-illustration svg {
    max-width: 300px;
    height: auto;
}

/* Controles do carousel */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Indicadores do carousel */
.carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: white;
    transform: scale(1.2);
}

/* Responsive para slides */
@media (max-width: 768px) {
    .banner-slide-image {
        height: 200px; /* Mais compacto para mobile */
        background-position: center top; /* Foco na parte superior da imagem */
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .banner-illustration svg {
        max-width: 200px;
    }
    
    /* Indicadores menores para mobile */
    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
}

@media (max-width: 576px) {
    .banner-slide-image {
        height: 160px; /* Ainda mais compacto em telas pequenas */
    }
    
    .default-slide-content .col-lg-4 {
        display: none;
    }
    
    .banner-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .banner-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* Esconder controles em telas muito pequenas se necessário */
    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* Responsive - Benefits Section */
@media (max-width: 768px) {
    .benefits-carousel {
        gap: 10px;
        padding: 0 15px;
        justify-content: flex-start;
        overflow-x: auto;
    }
    
    .benefit-card {
        width: 110px;
        padding: 12px 8px;
        flex-shrink: 0;
    }
    
    .benefit-logo {
        width: 70px;
        height: 70px;
        margin-bottom: 10px;
    }
    
    .benefit-name {
        font-size: 11px;
        line-height: 1.2;
        min-height: 28px;
    }
    
    .benefit-placeholder {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .benefits-carousel {
        gap: 8px;
        padding: 0 10px;
    }
    
    .benefit-card {
        width: 95px;
        padding: 10px 6px;
    }
    
    .benefit-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
    }
    
    .benefit-name {
        font-size: 10px;
        min-height: 24px;
    }
    
    .benefit-placeholder {
        font-size: 16px;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-search {
    max-width: 500px;
    margin-bottom: 2rem;
}

.search-form .form-control {
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

.search-form .btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    background: white;
    color: var(--aneti-primary);
    border: none;
}

.search-form .btn:hover {
    background: #f8f9fa;
    color: var(--aneti-primary);
    transform: translateY(-2px);
}

.hero-illustration {
    position: relative;
    text-align: center;
}

.hero-people {
    max-width: 400px;
    height: auto;
}

/* Sections styling */
.benefits-section {
    padding: 4rem 0;
    background: white;
}

.recent-section {
    padding: 4rem 0;
    background: #fafbfc;
}

/* Section titles */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #012d6a;
    margin-bottom: 3rem;
    text-align: center;
}

/* Benefits in Highlight - Carousel Style */
.benefits-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.benefits-carousel {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.benefit-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 15px 10px;
    border-radius: 15px;
    background: transparent;
    width: 130px;
    flex-shrink: 0;
}

.benefit-card:hover {
    transform: translateY(-2px);
    color: inherit;
    text-decoration: none;
}

.benefit-logo {
    width: 90px;
    height: 90px;
    border-radius: 15px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    overflow: hidden;
}

.benefit-card:hover .benefit-logo {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(1, 45, 106, 0.15);
}

.benefit-logo img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 12px;
}

.benefit-placeholder {
    background: #012d6a;
    color: white;
    font-size: 24px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.benefit-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--aneti-dark);
    margin: 0;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Recent Companies Grid - 4 cards per row */
.recent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.recent-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(1, 45, 106, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.recent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(1, 45, 106, 0.15);
}

/* Cover Image */
.recent-card-cover {
    height: 180px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
    overflow: hidden;
}

.recent-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-card-cover-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, var(--aneti-primary), #0056b3);
    color: white;
    font-size: 48px;
}

/* Circular Logo in Content Area */
.recent-card-logo {
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
    margin: 0 auto 20px;
    position: relative;
    top: -55px;
    z-index: 2;
}

.recent-card-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
}

.recent-card-logo-placeholder {
    background: var(--aneti-primary);
    color: white;
    font-size: 24px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Favorite Button */
.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.favorite-btn:hover {
    background: white;
    transform: scale(1.1);
}

.favorite-btn i {
    color: #dc3545;
    font-size: 18px;
}

/* Card Content */
.recent-card-content {
    padding: 25px 25px 25px;
    text-align: center;
}

.recent-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--aneti-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.recent-card-category {
    margin-bottom: 12px;
}

.category-badge {
    background: rgba(1, 45, 106, 0.1);
    color: #012d6a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.recent-card-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Rating Stars */
.recent-card-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 16px;
    transition: color 0.3s ease;
}

.star.filled {
    color: #ffc107;
}

.rating-value {
    font-size: 14px;
    font-weight: 600;
    color: #012d6a;
}

/* Location */
.recent-card-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
    color: #6c757d;
    font-size: 14px;
}

.recent-card-location i {
    color: #012d6a;
}

/* Link Button */
.recent-card-link {
    display: inline-block;
    background: #012d6a;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.recent-card-link:hover {
    background: #001a4a;
    color: white;
    transform: translateY(-2px);
}
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f0f2f5;
}

.recent-card-location {
    color: #6c757d;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.favorite-btn {
    color: #ddd;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.favorite-btn:hover {
    color: #ff6b6b;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .recent-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .recent-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .categories-nav-horizontal {
        gap: 1rem;
        padding: 1rem;
    }
    
    .category-item {
        min-width: 60px;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .category-name {
        font-size: 0.7rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
    
    .benefit-logo {
        width: 80px;
        height: 80px;
    }
    
    .recent-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brand-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .user-menu {
        text-align: left;
        margin-top: 1rem;
    }
    
    .user-menu a {
        margin-left: 0;
        margin-right: 1rem;
        display: inline-block;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefit-logo {
        width: 70px;
        height: 70px;
    }
    
    .benefit-name {
        font-size: 0.8rem;
    }
}

/* Admin panel styles */
.admin-company-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.admin-company-logo-placeholder {
    width: 60px;
    height: 60px;
    background: var(--aneti-primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Modern Admin Dashboard Styles */
.admin-body {
    background: #f8f9fc;
    min-height: 100vh;
}

.admin-header {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e3e6f0;
    margin-bottom: 2rem;
}

.admin-greeting {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.admin-subtitle {
    color: #718096;
    margin: 0;
    font-size: 1rem;
}

.stats-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    padding: 1.5rem;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.stats-card.blue {
    background: linear-gradient(135deg, #012d6a 0%, #1e3a8a 100%);
}

.stats-card.primary {
    background: linear-gradient(135deg, #012d6a 0%, #1d4ed8 100%);
}

.stats-card.secondary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.stats-card.accent {
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.stats-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0.5rem 0 0 0;
    font-weight: 500;
}

.widget-card {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
}

.widget-header {
    padding: 1.5rem 1.5rem 0 1.5rem;
    border-bottom: none;
    background: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.widget-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #012d6a 0%, #1e3a8a 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.widget-body {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.metric-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f7fafc;
}

.metric-item:last-child {
    border-bottom: none;
}

.metric-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #012d6a 0%, #1e3a8a 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Chart Styles */
.chart-container {
    position: relative;
    height: 300px;
    margin: 1.5rem 0;
}

.chart-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.chart-filter {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    background: white;
    color: #4a5568;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.2s;
}

.chart-filter.active {
    background: #012d6a;
    color: white;
    border-color: #012d6a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #012d6a;
    margin: 0;
}

.stat-label {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0.25rem 0 0 0;
}

.device-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.device-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.device-icon {
    width: 20px;
    height: 20px;
    background: #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.ranking-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.ranking-item:last-child {
    border-bottom: none;
}

.ranking-number {
    width: 30px;
    height: 30px;
    background: #012d6a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.user-avatar-large {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.import-export-area {
    border: 2px dashed #cbd5e0;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    background: #f7fafc;
    margin: 1rem 0;
}

.file-upload-btn {
    background: #3182ce;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    margin: 0.5rem;
}

.metric-info {
    flex-grow: 1;
}

.metric-name {
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    font-size: 0.95rem;
}

.metric-detail {
    color: #718096;
    margin: 0;
    font-size: 0.85rem;
}

.period-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}

.period-tab {
    padding: 0.5rem 1rem;
    border: none;
    background: none;
    color: #718096;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.period-tab.active {
    background: #f7fafc;
    color: #2d3748;
    font-weight: 600;
}

.admin-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.admin-table .table {
    margin: 0;
}

.admin-table .table thead th {
    background: #f8f9fc;
    border: none;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem;
}

.admin-table .table tbody td {
    border-color: #f1f5f9;
    padding: 1rem;
    vertical-align: middle;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.75rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: #c6f6d5;
    color: #2f855a;
}

.status-badge.inactive {
    background: #fed7d7;
    color: #c53030;
}

.btn-action {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    background: white;
    color: #4a5568;
    transition: all 0.2s;
    margin-right: 0.25rem;
}

.btn-action:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    color: #2d3748;
}

.search-filters {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
}

.company-card-header {
    padding: 1.5rem;
    text-align: center;
    background-color: #fafafa;
    border-bottom: 1px solid #e0e0e0;
}

.company-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.company-logo-placeholder {
    width: 80px;
    height: 80px;
    background-color: var(--aneti-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 8px;
    margin: 0 auto;
}

.company-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.company-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--aneti-primary);
    margin-bottom: 0.5rem;
}

.company-card-category {
    font-size: 0.9rem;
    color: var(--aneti-secondary);
    margin-bottom: 1rem;
}

.company-card-description {
    flex-grow: 1;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.company-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.company-location {
    color: var(--aneti-secondary);
    font-size: 0.9rem;
}

/* Featured companies */
.company-card-featured {
    text-align: center;
    padding: 1rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.company-card-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(1, 45, 106, 0.15);
}

.company-card-featured .company-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-card-featured .company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.company-card-featured .logo-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--aneti-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    border-radius: 8px;
}

.company-card-featured .company-name {
    color: var(--aneti-primary);
    font-weight: 600;
    margin: 0;
}

.company-card-featured a {
    text-decoration: none;
}

/* Company details page */
.company-detail-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.company-detail-logo-placeholder {
    width: 150px;
    height: 150px;
    background-color: var(--aneti-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    border-radius: 12px;
    margin: 0 auto;
}

.company-detail-title {
    color: var(--aneti-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.company-detail-meta {
    margin-bottom: 1rem;
}

.company-info .info-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.company-info .info-item:last-child {
    border-bottom: none;
}

/* Coupon styles */
.coupon-display {
    background: white !important;
    border: 2px dashed var(--aneti-primary);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(1, 45, 106, 0.1);
}

.coupon-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.coupon-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.coupon-logo-placeholder {
    width: 80px;
    height: 80px;
    background-color: var(--aneti-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 8px;
    margin: 0 auto;
}

.coupon-company-name {
    color: var(--aneti-primary) !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.coupon-description {
    color: #666 !important;
    margin: 0;
}

.coupon-body {
    margin-bottom: 1.5rem;
}

.coupon-info {
    text-align: center;
    margin-bottom: 1rem;
}

.coupon-info strong {
    color: #333 !important;
    font-weight: 700;
}

.coupon-code {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--aneti-primary) !important;
    background-color: #f8f9fa !important;
    padding: 0.75rem;
    border-radius: 8px;
    border: 2px dashed var(--aneti-primary);
    margin-top: 0.5rem;
}

.coupon-code-small {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    background-color: var(--aneti-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--aneti-primary);
}

.coupon-footer {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.coupon-footer small {
    color: #666 !important;
}

.coupon-info div {
    color: #333 !important;
}

.coupon-info .text-muted {
    color: #666 !important;
}

.coupon-display-modal {
    background: white;
    border: 2px dashed var(--aneti-primary);
    border-radius: 12px;
    padding: 1.5rem;
}

/* Dashboard styles */
.dashboard-header {
    background: linear-gradient(135deg, var(--aneti-primary) 0%, var(--aneti-primary-light) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.coupon-table-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
}

.coupon-table-logo-placeholder {
    width: 40px;
    height: 40px;
    background-color: var(--aneti-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
}

/* Admin styles */
.admin-company-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;
}

.admin-company-logo-placeholder {
    width: 60px;
    height: 60px;
    background-color: var(--aneti-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 6px;
}

.admin-company-logo-small {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 4px;
}

.admin-company-logo-placeholder-small {
    width: 30px;
    height: 30px;
    background-color: var(--aneti-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
}

/* Footer */
.main-footer {
    margin-top: 4rem;
}

.social-links a {
    font-size: 1.25rem;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .company-card-featured .company-logo {
        width: 80px;
        height: 80px;
    }
    
    .company-detail-logo,
    .company-detail-logo-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .coupon-code {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .coupon-display {
        padding: 1rem;
    }
    
    .category-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Print styles for coupons */
@media print {
    .no-print {
        display: none !important;
    }
    
    .coupon-display {
        border: 2px solid var(--aneti-primary);
        page-break-inside: avoid;
    }
    
    body {
        background: white !important;
    }
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Success states */
.success-icon {
    color: var(--aneti-success);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--aneti-light);
}

::-webkit-scrollbar-thumb {
    background: var(--aneti-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--aneti-primary-dark);
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(1, 45, 106, 0.25);
    border-color: var(--aneti-primary);
}

/* Custom badges */
.badge {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
}

/* Table improvements */
.table th {
    border-top: none;
    background-color: var(--aneti-light);
    color: var(--aneti-primary);
    font-weight: 600;
}

.table-hover tbody tr:hover {
    background-color: rgba(1, 45, 106, 0.05);
}

/* Alert improvements */
.alert {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Card improvements */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.card-header {
    background-color: var(--aneti-light);
    border-bottom: 1px solid rgba(1, 45, 106, 0.1);
    border-radius: 12px 12px 0 0 !important;
}

/* Button improvements */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

/* Form improvements */
.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--aneti-primary);
    box-shadow: 0 0 0 0.2rem rgba(1, 45, 106, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--aneti-primary);
    margin-bottom: 0.5rem;
}

/* Modal improvements */
.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background-color: var(--aneti-light);
    border-bottom: 1px solid rgba(1, 45, 106, 0.1);
    border-radius: 12px 12px 0 0;
}

.modal-title {
    color: var(--aneti-primary);
    font-weight: 600;
}


/* Modern Benefit Page Styles - Following Parque da Mônica Model */
.benefit-header {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.benefit-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.benefit-logo-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #012d6a, #1e40af);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    border-radius: 12px;
    margin: 0 auto;
}

.benefit-title {
    color: #012d6a;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.benefit-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-text {
    font-weight: 600;
    color: #374151;
}

.benefit-category {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-discount {
    color: #059669;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}

.benefit-tabs {
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.benefit-nav .nav-link {
    border: none;
    color: #6b7280;
    font-weight: 500;
    padding: 1rem 1.5rem;
}

.benefit-nav .nav-link.active {
    color: #012d6a;
    background: white;
    border-bottom: 3px solid #012d6a;
}

.benefit-actions {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.action-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-action-icon {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s;
    min-width: 80px;
}

.btn-action-icon:hover {
    color: #012d6a;
}

.btn-action-icon i {
    font-size: 1.5rem;
}

.btn-action-icon span {
    font-size: 0.875rem;
    text-align: center;
}

.benefit-main-image {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-placeholder-image {
    text-align: center;
    color: #9ca3af;
    padding: 4rem;
}

.benefit-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.benefit-section-title {
    color: #7c3aed;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.how-it-works {
    padding-left: 1rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.step-number {
    color: #7c3aed;
    font-weight: 600;
    min-width: 30px;
}

.step-text {
    color: #374151;
}

.regulation-content {
    padding-left: 1rem;
}

.regulation-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.regulation-number {
    color: #374151;
    font-weight: 600;
    min-width: 30px;
}

.regulation-text {
    color: #6b7280;
}

.location-section {
    text-align: center;
}

.location-map {
    margin-bottom: 1.5rem;
}

.map-placeholder {
    background: #f3f4f6;
    border-radius: 12px;
    padding: 3rem 2rem;
    color: #9ca3af;
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.map-control {
    width: 35px;
    height: 35px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.map-control:hover {
    background: #f9fafb;
}

.location-info {
    text-align: left;
}

.benefit-sidebar {
    position: sticky;
    top: 20px;
}

.use-button-container {
    text-align: center;
    margin-bottom: 2rem;
}

.btn-use {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    margin-bottom: 1.5rem;
}

.btn-use:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    color: white;
}

.company-mini-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.company-mini-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
}

.logo-placeholder-mini {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #012d6a, #1e40af);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 12px;
    margin: 0 auto;
}

.company-description {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.company-description p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info i {
    color: #6b7280;
    width: 16px;
}

.contact-info a {
    color: #012d6a;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .benefit-title {
        font-size: 2rem;
    }

    .action-buttons {
        gap: 1rem;
        justify-content: space-around;
    }

    .btn-action-icon {
        min-width: 60px;
    }

    .btn-action-icon span {
        font-size: 0.75rem;
    }

    .benefit-section {
        padding: 1.5rem;
    }

    .company-description {
        padding: 1.5rem;
    }
}


/* Reviews and Ratings Styles */
.rating-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #012d6a;
    display: block;
}

.rating-stars .stars {
    color: #fbbf24;
    font-size: 1.5rem;
}

.rating-text {
    color: #6b7280;
    margin-top: 0.5rem;
}

.rating-breakdown {
    padding-left: 2rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.5rem;
}

.bar-label {
    min-width: 80px;
    font-size: 0.9rem;
    color: #6b7280;
}

.progress {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
}

.bar-count {
    min-width: 20px;
    font-size: 0.9rem;
    color: #6b7280;
    text-align: right;
}

.reviews-list {
    margin-bottom: 2rem;
}

.review-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #012d6a, #1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-name {
    margin: 0 0 4px 0;
    font-weight: 600;
    color: #374151;
}

.review-rating .star {
    color: #e5e7eb;
    font-size: 1rem;
}

.review-rating .star.filled {
    color: #fbbf24;
}

.review-date {
    color: #9ca3af;
    font-size: 0.875rem;
}

.review-comment {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.add-review-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
    margin-bottom: 1rem;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    color: #d1d5db;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.rating-input label:hover,
.rating-input input[type="radio"]:checked ~ label {
    color: #fbbf24;
}

.login-prompt {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    color: #6b7280;
}

.login-prompt a {
    color: #012d6a;
    text-decoration: none;
    font-weight: 600;
}

.login-prompt a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .rating-breakdown {
        padding-left: 0;
        margin-top: 1.5rem;
    }
    
    .rating-bar {
        gap: 8px;
    }
    
    .bar-label {
        min-width: 70px;
        font-size: 0.8rem;
    }
    
    .review-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .reviewer-info {
        width: 100%;
    }
}
