/* HERO COM BOLINHAS PEQUENAS */
    .hero-animated-light {
        min-height: 100vh;
        background: linear-gradient(135deg, #001a33 0%, #003366 50%, #001a33 100%);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        color: #ffffff;
    }

    /* FUNDO COM BOLINHAS PEQUENAS */
    .bubbles-background-light {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .bubbles-container-light {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .bubble-light {
        position: absolute;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        pointer-events: none;
        animation: bubbleFloatLight linear infinite;
        box-shadow: 
            inset 0 0 5px rgba(255, 255, 255, 0.15),
            0 0 8px rgba(255, 255, 255, 0.1);
        opacity: 0.7;
    }

    .bubble-light::before {
        content: '';
        position: absolute;
        top: 25%;
        left: 25%;
        width: 20%;
        height: 20%;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        filter: blur(1px);
    }

    @keyframes bubbleFloatLight {
        0% {
            transform: translateY(100vh) scale(0.3);
            opacity: 0;
        }
        10% {
            opacity: 0.6;
        }
        90% {
            opacity: 0.6;
        }
        100% {
            transform: translateY(-100px) scale(0.8);
            opacity: 0;
        }
    }

    .gradient-overlay-light {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 30% 60%, rgba(255, 215, 0, 0.05) 0%, transparent 60%),
            radial-gradient(circle at 70% 40%, rgba(0, 102, 204, 0.05) 0%, transparent 60%);
        z-index: 2;
    }

    /* HEADER */
    .hero-header-light {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 60px;
        position: relative;
        z-index: 3;
    }

    .hero-header-light .logo-light {
        font-size: 24px;
        font-weight: 800;
        background: linear-gradient(135deg, #ffffff, #ffd700);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: 1.5px;
    }

    .hero-header-light nav a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        margin-left: 30px;
        font-size: 15px;
        font-weight: 500;
        position: relative;
        padding: 5px 0;
        transition: all 0.3s ease;
    }

    .hero-header-light nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: linear-gradient(90deg, #ffd700, #ffed4e);
        transition: width 0.3s ease;
    }

    .hero-header-light nav a:hover {
        color: #ffd700;
    }

    .hero-header-light nav a:hover::after {
        width: 100%;
    }

    /* CONTEÚDO DO HERO */
    .hero-content-light {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
        position: relative;
        z-index: 3;
        margin-top: 30px;
    }

    /* LINHA AMBEV (mais discreta) */
    .ambev-line-light {
        font-size: 14px;
        letter-spacing: 4px;
        margin-bottom: 30px;
        opacity: 0.6;
        font-weight: 300;
        display: flex;
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 20px;
        text-transform: uppercase;
    }

    .ambev-line-light .letter-light {
        display: inline-block;
        animation: letterGlowLight 4s ease-in-out infinite;
        animation-delay: calc(var(--index) * 0.05s);
        color: rgba(255, 255, 255, 0.7);
    }

    .ambev-line-light .space-light {
        width: 8px;
    }

    @keyframes letterGlowLight {
        0%, 100% {
            opacity: 0.4;
            transform: translateY(0);
        }
        50% {
            opacity: 0.8;
            transform: translateY(-2px);
            color: rgba(255, 215, 0, 0.8);
        }
    }

    /* BADGE */
    .badge-light {
        background: rgba(255, 215, 0, 0.1);
        color: #ffd700;
        padding: 10px 24px;
        border-radius: 25px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.5px;
        margin-bottom: 40px;
        border: 1px solid rgba(255, 215, 0, 0.3);
        backdrop-filter: blur(4px);
        text-transform: uppercase;
        animation: badgeFloatLight 6s ease-in-out infinite;
    }

    @keyframes badgeFloatLight {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-5px);
        }
    }

    /* TÍTULOS */
    .main-title-light {
        font-size: 96px;
        font-weight: 900;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #ffffff 0%, #e6f0ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: 4px;
        text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        position: relative;
    }

    .main-title-light::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
        animation: titleLineLight 3s ease-in-out infinite;
    }

    @keyframes titleLineLight {
        0%, 100% {
            width: 80px;
            opacity: 0.5;
        }
        50% {
            width: 120px;
            opacity: 1;
        }
    }

    .subtitle-light {
        font-size: 36px;
        color: rgba(255, 215, 0, 0.95);
        margin-bottom: 30px;
        font-weight: 600;
        letter-spacing: 1.5px;
        position: relative;
        display: inline-block;
        padding-bottom: 12px;
    }

    .subtitle-light::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255, 215, 0, 0.3), 
            rgba(255, 215, 0, 0.6), 
            rgba(255, 215, 0, 0.3), 
            transparent
        );
        animation: subtitleLineLight 4s linear infinite;
    }

    @keyframes subtitleLineLight {
        0% {
            background-position: -200px 0;
        }
        100% {
            background-position: 200px 0;
        }
    }

    /* DESCRIÇÃO */
    .description-light {
        font-size: 18px;
        line-height: 1.7;
        color: rgba(208, 228, 255, 0.9);
        max-width: 700px;
        margin: 0 auto 40px;
        padding: 0 30px;
        animation: fadeInUpLight 1s ease-out 0.3s both;
    }

    @keyframes fadeInUpLight {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ELEMENTOS DECORATIVOS SUTIS */
    .hero-decoration-light {
        position: absolute;
        bottom: 40px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 60px;
        z-index: 3;
    }

    .sparkle {
        font-size: 16px;
        color: rgba(255, 215, 0, 0.4);
        animation: sparkleTwinkle 3s ease-in-out infinite;
    }

    .sparkle-1 {
        animation-delay: 0s;
    }

    .sparkle-2 {
        animation-delay: -1s;
    }

    .sparkle-3 {
        animation-delay: -2s;
    }

    @keyframes sparkleTwinkle {
        0%, 100% {
            opacity: 0.3;
            transform: scale(1);
        }
        50% {
            opacity: 0.8;
            transform: scale(1.1);
            color: rgba(255, 215, 0, 0.8);
        }
    }

    /* RESPONSIVIDADE */
    @media (max-width: 1024px) {
        .main-title-light {
            font-size: 72px;
        }
        
        .subtitle-light {
            font-size: 28px;
        }
        
        .description-light {
            font-size: 16px;
        }
        
        .ambev-line-light {
            font-size: 12px;
            letter-spacing: 3px;
        }
        
        .hero-header-light {
            padding: 25px 40px;
        }
    }

    @media (max-width: 768px) {
        .hero-header-light {
            padding: 20px;
            flex-direction: column;
            gap: 15px;
        }
        
        .hero-header-light nav a {
            margin: 0 12px;
            font-size: 14px;
        }
        
        .main-title-light {
            font-size: 48px;
            letter-spacing: 2px;
        }
        
        .subtitle-light {
            font-size: 22px;
        }
        
        .description-light {
            font-size: 15px;
            padding: 0 20px;
        }
        
        .badge-light {
            padding: 8px 20px;
            font-size: 11px;
            margin-bottom: 30px;
        }
        
        .ambev-line-light {
            font-size: 10px;
            letter-spacing: 2px;
            gap: 2px;
            margin-bottom: 25px;
        }
        
        .hero-decoration-light {
            gap: 40px;
            bottom: 25px;
        }
        
        .sparkle {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .main-title-light {
            font-size: 40px;
        }
        
        .subtitle-light {
            font-size: 18px;
        }
        
        .ambev-line-light {
            font-size: 9px;
            letter-spacing: 1.5px;
        }
        
        .hero-content-light {
            margin-top: 20px;
        }
        
        .description-light {
            line-height: 1.6;
        }
    }



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        body {
            min-height: 100vh;
            background: linear-gradient(180deg, #001f3f, #003b6f);
            color: #ffffff;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 60px;
        }

        header .logo {
            font-weight: bold;
            font-size: 20px;
            letter-spacing: 1px;
        }

        nav a {
            color: #ffffff;
            text-decoration: none;
            margin-left: 24px;
            font-size: 14px;
        }

        nav a:hover {
            text-decoration: underline;
        }

        .hero {
            height: calc(100vh - 90px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .badge {
            background-color: rgba(255, 215, 0, 0.15);
            color: #ffd700;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 215, 0, 0.4);
        }

        .hero h1 {
            font-size: 64px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .hero h2 {
            font-size: 48px;
            color: #ffd700;
            margin-bottom: 20px;
        }

        .hero p {
            max-width: 700px;
            font-size: 16px;
            line-height: 1.6;
            color: #d0e4ff;
        }

        /* NOVA SEÇÃO: PORTFÓLIO DE MARCAS */
        .portfolio-section {
            padding: 80px 60px;
            background-color: #ffffff;
            color: #333;
        }

        .portfolio-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .portfolio-subtitle {
            font-size: 18px;
            color: #666;
            letter-spacing: 1px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .portfolio-title {
            font-size: 42px;
            font-weight: bold;
            color: #001f3f;
            margin-bottom: 20px;
        }

        .portfolio-description {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .separator {
            width: 100px;
            height: 2px;
            background-color: #ffd700;
            margin: 0 auto 50px;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .brand-card {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eaeaea;
            min-height: 350px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
        }

        .brand-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 31, 63, 0.1);
        }

/* Aumentando a área da imagem de 180px para 220px, por exemplo */
.brand-logo-container {
    width: 300px;       /* Aumente aqui */
    height: 300px;      /* Aumente aqui igual para manter quadrado */
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Procure por esta parte no seu CSS e atualize */
.brand-logo {
    width: 100%;        /* Mudou de max-width para width */
    height: 100%;       /* Mudou de max-height para height */
    object-fit: contain; /* Mantém a proporção para não distorcer */
}

        .brand-name {
            font-size: 22px;
            font-weight: bold;
            color: #001f3f;
            margin-bottom: 10px;
        }

        .brand-slogan {
            font-size: 16px;
            color: #666;
            font-style: italic;
            line-height: 1.4;
            min-height: 40px;
        }

        /* Placeholder para Skol */
        .skol-placeholder {
            background: linear-gradient(135deg, #0066cc, #0099ff);
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 24px;
            border-radius: 10px;
        }

        /* NOVA SEÇÃO: CADASTRO */
        .registration-section {
            padding: 80px 60px;
            background: linear-gradient(135deg, #0a2748, #001f3f);
            color: white;
        }

        .registration-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .registration-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .registration-title {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #ffd700;
        }

        .registration-subtitle {
            font-size: 18px;
            color: #d0e4ff;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .registration-divider {
            width: 150px;
            height: 1px;
            background: #ffd700;
            margin: 30px auto;
            opacity: 0.5;
        }

        .registration-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .registration-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 40px 30px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .registration-card:hover {
            transform: translateY(-5px);
            border-color: #ffd700;
            background: rgba(255, 255, 255, 0.1);
        }

        .registration-card-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #ffd700;
        }

        .registration-card-description {
            font-size: 16px;
            color: #d0e4ff;
            line-height: 1.5;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .benefits-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .benefits-list li {
            padding: 8px 0;
            color: #ffffff;
            display: flex;
            align-items: center;
        }

        .benefits-list li::before {
            content: "✓";
            color: #4CAF50;
            font-weight: bold;
            margin-right: 10px;
            font-size: 18px;
        }

        .benefits-list li.inactive::before {
            content: "○";
            color: #666;
        }

        .register-btn {
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            color: #001f3f;
            border: none;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            margin-top: auto;
        }

        .register-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        .bonus-section {
            background: rgba(255, 215, 0, 0.1);
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            border: 2px dashed #ffd700;
            margin-top: 30px;
        }

        .bonus-title {
            font-size: 28px;
            font-weight: bold;
            color: #ffd700;
            margin-bottom: 15px;
        }

        .bonus-text {
            font-size: 18px;
            color: #ffffff;
        }

        /* Responsividade */
        @media (max-width: 1024px) {
            .brands-grid,
            .registration-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 20px;
            }

            .hero h1 {
                font-size: 42px;
            }

            .hero h2 {
                font-size: 32px;
            }

            .portfolio-section,
            .registration-section {
                padding: 60px 20px;
            }

            .portfolio-title,
            .registration-title {
                font-size: 32px;
            }

            .brands-grid,
            .registration-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .brand-logo-container {
                width: 150px;
                height: 150px;
            }

            .registration-card {
                padding: 30px 20px;
            }

            .bonus-section {
                padding: 30px 20px;
            }
        }
    


    /* SEÇÃO: IMPACTO PREMIUM */
    .impact-premium-section {
        padding: 120px 60px;
        background: linear-gradient(135deg, #0a1a2d 0%, #001f3f 50%, #0a2748 100%);
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }

    .impact-premium-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
        z-index: 1;
    }

    .impact-premium-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .impact-premium-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .section-badge {
        display: inline-block;
        background: rgba(255, 215, 0, 0.15);
        color: #ffd700;
        padding: 8px 24px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 25px;
        border: 1px solid rgba(255, 215, 0, 0.3);
        text-transform: uppercase;
    }

    .impact-premium-title {
        font-size: 56px;
        font-weight: 800;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #ffffff 0%, #d0e4ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -0.5px;
    }

    .impact-premium-title .highlight {
        background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 900;
    }

    .impact-premium-subtitle {
        font-size: 20px;
        color: #d0e4ff;
        max-width: 700px;
        margin: 0 auto 40px;
        line-height: 1.6;
        opacity: 0.9;
    }

    .animated-line {
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #ffd700, transparent);
        margin: 0 auto;
        position: relative;
        animation: lineGlow 3s ease-in-out infinite;
    }

    @keyframes lineGlow {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }

    /* GRID DE ESTATÍSTICAS */
    .stats-premium-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        perspective: 1000px;
    }

    .stat-premium-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 40px 30px;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transform-style: preserve-3d;
    }

    .stat-premium-card:hover {
        transform: translateY(-15px) rotateX(5deg);
        border-color: rgba(255, 215, 0, 0.3);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(255, 215, 0, 0.1),
            inset 0 0 30px rgba(255, 255, 255, 0.05);
    }

    .stat-icon {
        font-size: 48px;
        margin-bottom: 25px;
        display: inline-block;
        animation: floatIcon 6s ease-in-out infinite;
    }

    @keyframes floatIcon {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }

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

    .stat-premium-number {
        font-size: 64px;
        font-weight: 900;
        margin-bottom: 15px;
        color: #ffffff;
        display: flex;
        align-items: baseline;
        gap: 5px;
    }

    .stat-premium-number .counter {
        background: linear-gradient(135deg, #ffd700, #ffffff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .stat-premium-number .plus,
    .stat-premium-number .percent {
        font-size: 48px;
        color: #ffd700;
        font-weight: 700;
    }

    .stat-premium-label {
        font-size: 22px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }

    .stat-premium-desc {
        font-size: 16px;
        color: #d0e4ff;
        line-height: 1.5;
        opacity: 0.8;
        margin: 0;
    }

    .stat-wave {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ffd700, #0066cc, #ffd700);
        background-size: 200% 100%;
        animation: waveMove 3s linear infinite;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .stat-premium-card:hover .stat-wave {
        opacity: 1;
    }

    @keyframes waveMove {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }

    /* ELEMENTOS FLUTUANTES */
    .floating-elements {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        z-index: 1;
    }

    .float-element {
        position: absolute;
        font-size: 32px;
        opacity: 0.1;
        animation: float 20s linear infinite;
    }

    .float-1 {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .float-2 {
        top: 60%;
        right: 15%;
        animation-delay: -5s;
    }

    .float-3 {
        bottom: 30%;
        left: 20%;
        animation-delay: -10s;
    }

    @keyframes float {
        0% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-50px) rotate(180deg); }
        100% { transform: translateY(0) rotate(360deg); }
    }

    /* RESPONSIVIDADE */
    @media (max-width: 1200px) {
        .stats-premium-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        .stat-premium-number {
            font-size: 56px;
        }
    }

    @media (max-width: 768px) {
        .impact-premium-section {
            padding: 80px 20px;
        }

        .impact-premium-title {
            font-size: 42px;
        }

        .impact-premium-subtitle {
            font-size: 18px;
            padding: 0 20px;
        }

        .stats-premium-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .stat-premium-card {
            padding: 30px 20px;
        }

        .stat-premium-number {
            font-size: 48px;
        }

        .stat-premium-label {
            font-size: 20px;
        }
    }

    @media (max-width: 480px) {
        .impact-premium-title {
            font-size: 36px;
        }
        
        .stat-icon {
            font-size: 40px;
        }
    }



    /* SEÇÃO: SOBRE NÓS */
    .about-section {
        padding: 100px 60px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        position: relative;
        overflow: hidden;
    }

    .about-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .about-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .about-badge {
        display: inline-block;
        background: #001f3f;
        color: #ffffff;
        padding: 10px 30px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        margin-bottom: 30px;
        text-transform: uppercase;
        position: relative;
        overflow: hidden;
    }

    .about-badge::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
        animation: shine 3s infinite;
    }

    @keyframes shine {
        0% { left: -100%; }
        100% { left: 100%; }
    }

    .about-title {
        font-size: 48px;
        font-weight: 700;
        color: #001f3f;
        margin-bottom: 30px;
        line-height: 1.2;
    }

    .about-title .gold-text {
        color: #ffd700;
        position: relative;
        display: inline-block;
    }

    .about-title .gold-text::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #ffd700, #ffed4e);
        border-radius: 2px;
    }

    .title-decoration {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .decoration-line {
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ffd700, transparent);
    }

    .decoration-star {
        color: #ffd700;
        font-size: 20px;
        animation: starTwinkle 2s infinite;
    }

    @keyframes starTwinkle {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.5; transform: scale(1.1); }
    }

    /* CONTEÚDO PRINCIPAL */
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about-main-text {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .about-description {
        font-size: 18px;
        line-height: 1.8;
        color: #333;
        margin-bottom: 20px;
        padding-right: 20px;
    }

    /* CARDS DE CARACTERÍSTICAS */
    .about-features {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .feature-card {
        background: #ffffff;
        border-radius: 15px;
        padding: 30px;
        position: relative;
        overflow: hidden;
        border: 1px solid #eaeaea;
        box-shadow: 0 10px 30px rgba(0, 31, 63, 0.05);
        transition: all 0.3s ease;
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 31, 63, 0.1);
        border-color: #ffd700;
    }

    .feature-card:hover .feature-icon {
        background: linear-gradient(135deg, #ffd700, #ffed4e);
        color: #001f3f;
        transform: scale(1.1) rotate(5deg);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        background: #001f3f;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        transition: all 0.3s ease;
    }

    .feature-icon svg {
        width: 30px;
        height: 30px;
    }

    .feature-content {
        flex: 1;
    }

    .feature-title {
        font-size: 20px;
        font-weight: 700;
        color: #001f3f;
        margin-bottom: 10px;
        position: relative;
        padding-bottom: 8px;
    }

    .feature-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #ffd700, #ffed4e);
        border-radius: 1px;
    }

    .feature-text {
        font-size: 16px;
        line-height: 1.6;
        color: #666;
        margin: 0;
    }

    .feature-ornament {
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, transparent 50%, #001f3f 50%);
        border-radius: 0 15px 0 0;
        opacity: 0.1;
        transition: opacity 0.3s ease;
    }

    .feature-card:hover .feature-ornament {
        opacity: 0.2;
    }

    /* LADO DA IMAGEM */
    .about-image {
        position: relative;
    }

    .image-container {
        position: relative;
    }

    .image-frame {
        background: linear-gradient(135deg, #001f3f, #003b6f);
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 20px 60px rgba(0, 31, 63, 0.2);
        transform: perspective(1000px) rotateY(-5deg);
        transition: transform 0.5s ease;
    }

    .image-frame:hover {
        transform: perspective(1000px) rotateY(0deg);
    }

    @media (max-width: 768px) {
    .about-image {
        padding: 0 20px; /* Adiciona 20px de espaço nas laterais no celular */
    }
}

/* 1. Garante que a caixa tenha borda redonda e corte o excesso */
.image-placeholder {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px; /* Arredonda a caixa */
    overflow: hidden;    /* Força o corte */
    
    /* Correção para alguns celulares (Safari/iPhone): */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    transform: translateZ(0);
}

/* 2. FORÇA a imagem a também ter borda redonda */
.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px; /* Adicione isso aqui também! */
}

    .placeholder-content {
        text-align: center;
        color: rgba(255, 255, 255, 0.7);
    }

    .placeholder-icon {
        font-size: 60px;
        display: block;
        margin-bottom: 20px;
        opacity: 0.8;
    }

    .placeholder-text {
        font-size: 16px;
        line-height: 1.4;
    }

    /* DECORAÇÃO DA IMAGEM */
    .image-decoration {
        position: absolute;
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        z-index: -1;
    }

    .decoration-dot {
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ffd700, #ffed4e);
        animation: floatDot 4s ease-in-out infinite;
    }

    .dot-1 {
        top: 10%;
        left: 10%;
        animation-delay: 0s;
    }

    .dot-2 {
        top: 20%;
        right: 15%;
        animation-delay: -1s;
    }

    .dot-3 {
        bottom: 30%;
        left: 20%;
        animation-delay: -2s;
    }

    .dot-4 {
        bottom: 10%;
        right: 10%;
        animation-delay: -3s;
    }

    @keyframes floatDot {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-20px) scale(1.1); }
    }

    /* RESPONSIVIDADE */
    @media (max-width: 1024px) {
        .about-content {
            grid-template-columns: 1fr;
            gap: 60px;
        }
        
        .about-image {
            order: -1;
        }
        
        .image-frame {
            max-width: 500px;
            margin: 0 auto;
        }
    }

    @media (max-width: 768px) {
        .about-section {
            padding: 80px 20px;
        }
        
        .about-title {
            font-size: 36px;
        }
        
        .feature-card {
            padding: 20px;
            flex-direction: column;
            text-align: center;
        }
        
        .feature-icon {
            margin: 0 auto;
        }
        
        .feature-title::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .image-placeholder {
            height: 300px;
        }
        
        .title-decoration {
            gap: 10px;
        }
        
        .decoration-line {
            width: 40px;
        }
    }

    @media (max-width: 480px) {
        .about-title {
            font-size: 28px;
        }
        
        .about-description {
            font-size: 16px;
        }
        
        .feature-card {
            padding: 15px;
        }
    }



    /* RODAPÉ PREMIUM 
    .footer-premium {
        background: linear-gradient(180deg, #001f3f 0%, #000f1f 100%);
        color: #ffffff;
        position: relative;
        margin-top: 100px;
    }*/

    .footer-wave {
        position: absolute;
        top: -100px;
        left: 0;
        width: 100%;
        height: 100px;
        overflow: hidden;
        line-height: 0;
    }

    .footer-wave svg {
        width: calc(100% + 1.3px);
        height: 100%;
        display: block;
    }

    .footer-main {
        padding: 80px 60px 40px;
        position: relative;
        z-index: 1;
    }

    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    /* CABEÇALHO DO RODAPÉ */
    .footer-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding-bottom: 60px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 60px;
    }

    .footer-brand {
        max-width: 400px;
    }

    .footer-logo {
        font-size: 42px;
        font-weight: 900;
        background: linear-gradient(135deg, #ffffff, #ffd700);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .footer-tagline {
        font-size: 18px;
        color: #d0e4ff;
        line-height: 1.6;
        opacity: 0.9;
    }

    .footer-social {
        display: flex;
        gap: 15px;
    }

    .social-link {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-weight: bold;
        text-decoration: none;
        font-size: 16px;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .social-link:hover {
        background: linear-gradient(135deg, #ffd700, #ffed4e);
        color: #001f3f;
        transform: translateY(-3px);
        border-color: #ffd700;
    }

    /* MENU DO RODAPÉ */
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 60px;
    }

    .footer-column {
        padding: 20px 0;
    }

    .column-title {
        font-size: 18px;
        font-weight: 700;
        color: #ffd700;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .column-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #ffd700, transparent);
    }

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

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-link {
        color: #d0e4ff;
        text-decoration: none;
        font-size: 16px;
        transition: all 0.3s ease;
        position: relative;
        padding-left: 20px;
        display: inline-block;
    }

    .footer-link::before {
        content: '→';
        position: absolute;
        left: 0;
        color: #ffd700;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }

    .footer-link:hover {
        color: #ffffff;
        transform: translateX(5px);
    }

    .footer-link:hover::before {
        opacity: 1;
        transform: translateX(0);
    }

    /* INFORMAÇÕES DE CONTATO */
    .contact-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding: 40px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        margin-bottom: 40px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .contact-icon {
        font-size: 32px;
        opacity: 0.8;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
    }

    .contact-label {
        font-size: 14px;
        color: #ffd700;
        margin-bottom: 5px;
        opacity: 0.8;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .contact-text {
        font-size: 18px;
        color: #ffffff;
        font-weight: 600;
    }

    /* RODAPÉ INFERIOR */
    .footer-bottom {
        background: rgba(0, 0, 0, 0.2);
        padding: 30px 60px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .bottom-container {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .copyright {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .copyright-text {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
    }

    .legal-links {
        display: flex;
        gap: 20px;
    }

    .legal-link {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 13px;
        transition: color 0.3s ease;
    }

    .legal-link:hover {
        color: #ffd700;
    }

    /* AVISO DE RESPONSABILIDADE */
    .responsibility-notice {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 25px;
        background: rgba(255, 215, 0, 0.1);
        border-radius: 10px;
        border: 1px solid rgba(255, 215, 0, 0.3);
    }

    .beer-glass {
        font-size: 24px;
        animation: beerFloat 3s ease-in-out infinite;
    }

    @keyframes beerFloat {
        0%, 100% { transform: translateY(0) rotate(0); }
        50% { transform: translateY(-5px) rotate(5deg); }
    }

    .notice-text {
        font-size: 13px;
        font-weight: 600;
        color: #ffd700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .age-badge {
        width: 36px;
        height: 36px;
        background: #ff0000;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 14px;
        border: 2px solid white;
    }

    /* BOTÃO VOLTAR AO TOPO */
    .back-to-top {
        background: linear-gradient(135deg, #ffd700, #ffed4e);
        color: #001f3f;
        border: none;
        padding: 12px 25px;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
    }

    .back-to-top:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
    }

    .arrow-up {
        font-size: 18px;
        font-weight: bold;
    }

    /* RESPONSIVIDADE */
    @media (max-width: 1024px) {
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .contact-info {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .footer-header {
            flex-direction: column;
            gap: 30px;
        }
    }

    @media (max-width: 768px) {
        .footer-main {
            padding: 60px 20px 30px;
        }
        
        .footer-bottom {
            padding: 20px;
        }
        
        .footer-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .contact-info {
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .bottom-container {
            flex-direction: column;
            text-align: center;
            gap: 20px;
        }
        
        .legal-links {
            justify-content: center;
        }
        
        .responsibility-notice {
            flex-direction: column;
            text-align: center;
        }
        
        .footer-wave {
            top: -50px;
            height: 50px;
        }
    }

    @media (max-width: 480px) {
        .footer-logo {
            font-size: 32px;
        }
        
        .footer-tagline {
            font-size: 16px;
        }
        
        .contact-text {
            font-size: 16px;
        }
        
        .back-to-top {
            width: 100%;
            justify-content: center;
        }
    }







/* Layout em Grid */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    width: 100%;
    
    /* ADICIONE ISSO AQUI: */
    margin: 0 auto; /* 0 para topo/baixo, auto para esquerda/direita */
    
    /* Opcional: Para centralizar os cards se houver poucos itens na linha */
    justify-content: center; 
}

/* O resto do código continua igual... */
.card {
    position: relative;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* ... restante do CSS */

        .card:hover {
            transform: translateY(-5px);
        }

        /* Imagem de Fundo */
        .card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Overlay Branco Flutuante */
        .overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.96);
            padding: 22px;
            border-radius: 18px;
            text-align: left;
        }

        .overlay h3 {
            font-size: 20px;
            color: #000;
            font-weight: bold;
        }

        .overlay p {
            font-size: 13px;
            color: #888;
            margin: 4px 0 12px 0;
        }

        /* Detalhe da Barra Colorida */
        .line {
            height: 3px;
            width: 45px;
            border-radius: 2px;
        }

        .line-red { background-color: #d6001c; }
        .line-yellow { background-color: #ffcc00; }
        .line-blue { background-color: #004b91; }

        /* Responsividade para telas menores */
        @media (max-width: 768px) {
            .grid-container {
                grid-template-columns: 1fr;
            }
        }

     /* aaa */

     
     /* FUNDO ESCURO */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); /* Fundo preto transparente */
    z-index: 9999; /* Fica em cima de tudo */
    display: none; /* Começa escondido */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

/* QUANDO ESTIVER ATIVO */
.modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* A CAIXINHA BRANCA */
.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    animation: subir 0.3s ease;
}

@keyframes subir {
    from { transform: translateY(50px); }
    to { transform: translateY(0); }
}

/* BOTÃO FECHAR (X) */
.modal-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 25px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

/* ESTILO DOS BOTÕES DE ATENDENTE */
.atendente-option {
    display: flex;
    align-items: center;
    background: #f0f2f5;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
    border: 1px solid #ddd;
}

.atendente-option:hover {
    background: #dcf8c6; /* Cor verdinha do zap */
    border-color: #25d366;
    transform: scale(1.02);
}

.atendente-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #25d366;
}

.atendente-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}