/* Custom Properties / Tokens */
:root {
    --primary-color: #d81b60; /* Pink Principal */
    --primary-light: #f06292; /* Pink Claro */
    --secondary-color: #ff4081; /* Pink Destaque */
    --secondary-hover: #f50057; /* Pink Hover */
    --text-main: #333333;
    --text-muted: #666666;
    --bg-main: #ffffff;
    --bg-light: #fff0f5; /* Fundo levemente rosado */
    --bg-gradient: linear-gradient(135deg, #d81b60 0%, #ff4081 100%);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    overflow-x: hidden;
}

body.loading {
    overflow: hidden; /* Prevent scrolling while preloader is active */
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-color); /* Fundo rosa */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-logo img {
    max-height: 120px;
    animation: preloaderPulse 1s infinite alternate;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease;
    filter: brightness(0) invert(1); /* Deixa a logo toda branca */
}

@keyframes preloaderPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.15); opacity: 1; }
}

/* Quando o preloader finaliza, a tela fica transparente e a logo cresce muito */
#preloader.finish {
    opacity: 0;
    visibility: hidden;
}

#preloader.finish .preloader-logo img {
    animation: none; /* Para o pulso */
    transform: scale(20); /* Logo cresce infinitamente na tela */
    opacity: 0; /* Logo some enquanto cresce */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.highlight {
    color: var(--secondary-color);
}

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

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-title {
    margin-bottom: 50px;
}

.section-title .subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.4);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 179, 0, 0.5);
    color: #fff; /* Ensure text stays white */
}

.btn-primary.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo-img {
    max-height: 110px; /* Aumentado consideravelmente para dar destaque */
    width: auto;
    margin: -20px 0; /* Margem negativa para compensar o espaço em branco da própria imagem e não empurrar muito a barra para baixo */
    object-fit: contain;
    transition: var(--transition-fast);
    filter: brightness(0) invert(1); /* Transforma a logo para totalmente branca quando o menu está no topo transparente */
}

.navbar.scrolled .header-logo-img {
    max-height: 80px; /* Reduz de forma proporcional no scroll */
    margin: -10px 0;
    filter: none; /* Volta à cor original quando o menu ganha fundo branco */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-fast);
    position: relative;
}

.navbar:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.9);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.navbar:not(.scrolled) .mobile-menu-toggle {
    color: #fff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--bg-gradient);
    position: relative;
    display: flex;
    align-items: flex-end; /* Anchor content to bottom */
    padding-top: 80px;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center; /* Center the right side vertically */
    justify-content: flex-end; /* Push right side to the right */
    gap: 0px;
    max-width: 1200px;
    width: 100%;
}

.hero-left {
    position: static;
    width: 0;
    height: 0;
}

.hero-right {
    flex: 0 0 50%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0;
    position: relative;
    z-index: 15; /* Em frente a faixa */
}

.hero-image {
    position: absolute;
    bottom: 0;
    left: 0; /* Anchor to edge */
    height: 115vh; /* Adjusted scaling to prevent overlapping the header */
    width: auto;
    max-width: none; /* No width limits! Let it grow vertically! */
    object-fit: contain;
    object-position: bottom left; /* Anchor to bottom and left */
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: slideInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, subtleFloat 6s ease-in-out infinite 1.2s;
    opacity: 0;
    z-index: 1; /* Keep behind text */
}

@keyframes slideInLeft {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

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



.campaign-info-images {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Or center if they look better */
}

.number-img {
    width: 65%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    animation: floatNumber 3s ease-in-out infinite, slideInRight 1s ease-out forwards;
    opacity: 0;
    margin-bottom: -25%; /* Aggressive negative margin using percentage */
    position: relative;
    z-index: 2;
}

.slogan-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    animation: slideInRight 1s ease-out forwards 0.3s;
    opacity: 0;
    margin-top: -15%; /* Aggressive negative margin using percentage */
    position: relative;
    z-index: 1;
}

@keyframes floatNumber {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes slideInRight {
    0% { transform: translateX(50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.hero-actions {
    margin-top: 20px;
    margin-bottom: 50px; /* Move o botão mais pra cima */
    animation: fadeInUp 1s ease-out forwards 0.5s;
    opacity: 0;
}

@keyframes fadeInUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.hero-shape {
    display: none; /* Oculta a onda branca para evitar a ponta aparecendo na faixa */
    position: absolute;
    bottom: -5px; /* Prevent slight gaps */
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-shape svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* Marquee Banner */
.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-color);
    z-index: 10;
    margin-top: -40px; /* Sobe um pouco do bottom do hero no desktop */
    display: flex;
    height: 50px; /* Altura da faixa menor */
}

.marquee-content {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    width: max-content;
    animation: marquee 40s linear infinite; /* Animação mais lenta */
}

.marquee-img {
    height: 50px; /* Altura da imagem menor */
    width: auto;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* About Section */
.about {
    background: linear-gradient(135deg, #fff2f6 0%, #ffe0ec 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(216, 27, 96, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.about-card.glassmorphism {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.about-card.glassmorphism::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
}

.about-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.about-grid-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.about-grid-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(216, 27, 96, 0.15);
    border-color: rgba(216, 27, 96, 0.2);
}

.icon-pulse {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

.icon-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse {
    to {
        transform: scale(1.4);
        opacity: 0;
    }
}

.about-grid-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.about-grid-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Values Section */
.values-intro {
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    border-top: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--secondary-color);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Contact Section */
.contact-card {
    background: linear-gradient(135deg, var(--primary-color), #b81550);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 20px 50px rgba(216, 27, 96, 0.3);
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-decoration {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-info {
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.highlight-yellow {
    color: #FFD54F; /* Amarelo vivo para contrastar com o rosa */
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.highlight-yellow::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: rgba(255, 213, 79, 0.4);
    bottom: 5px;
    left: 0;
    z-index: -1;
    border-radius: 4px;
}

.contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-btn.whatsapp {
    background-color: #25D366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.contact-btn.whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.contact-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

.contact-btn.instagram:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(220, 39, 67, 0.5);
    color: #fff;
}

.pulse-anim {
    animation: gentlePulse 3s infinite;
}

.pulse-anim-alt {
    animation: gentlePulse 3s infinite 1.5s;
}

@keyframes gentlePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Footer */
.footer {
    background-color: #111;
    color: #fff;
    padding: 50px 0 30px;
}

.footer-logo-img {
    max-height: 100px;
    width: auto;
    margin-bottom: 15px;
    margin-top: -20px; /* Compensar o padding da imagem se houver */
    object-fit: contain;
}

.cnpj {
    color: #888;
    font-size: 0.85rem;
    margin-top: 5px;
}

.footer p {
    color: #aaa;
}

.copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-slow);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-slow);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 992px) {
    h2 { font-size: 2rem; }
    
    .hero {
        padding-top: 0;
        height: 100vh;
        min-height: auto;
        overflow: hidden;
    }
    
    .hero-container {
        height: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: 5px; /* Empurra o bloco inteiro para a beirada do celular */
    }
    
    .hero-left {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    
    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
        object-position: top center;
        margin: 0;
    }
    
    .hero-right {
        position: relative;
        z-index: 15;
        width: 100%;
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .campaign-info-images {
        align-items: center;
        margin-bottom: 0px;
        width: 100%;
    }
    
    .marquee-container {
        margin-top: 0;
    }
    
    .slogan-img {
        width: 95%;
        height: auto;
        max-width: 100%;
        max-height: 200px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
        margin-bottom: -5px; /* Aproxima do botão */
        object-fit: contain;
        filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
    }
    
    .number-img {
        width: 85%;
        height: auto;
        max-width: 100%;
        max-height: 170px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: -110px; /* Margem negativa gigante para "puxar" o número para baixo, colando na logo */
        object-fit: contain;
        filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
    }
    
    .hero-actions {
        margin-top: 0px;
        margin-bottom: 15px; /* Garante que o botão não corte na borda da tela */
    }
    
    .hero-shape {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition-fast);
    }
    
    .navbar:not(.scrolled) .nav-links a {
        color: var(--text-main);
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-right .btn-primary {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .contact-links {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
