/* ==========================================================================


   CSS Variables & Globals


   ========================================================================== */


:root {


    /* Premium Palette (Midnight Blue & Sunset Orange/Gold) */


    --color-brand-blue: #0A192F; 


    --color-brand-blue-dark: #020C1B;


    --color-brand-blue-light: #112240;


    --color-brand-orange: #F97316; 


    --color-brand-yellow: #FACC15;





    --color-text: #0F172A;


    --color-text-muted: #475569;


    --bg-light: #F8FAFC;


    --bg-premium: #F0F4F8;


    


    /* Gating Colors (Soft Pastels with premium feel) */


    --color-baby: #38BDF8; 


    --color-wedding: #FBBF24; 


    --color-birthday: #FB923C;


    --color-graduation: #8B5CF6;


    --color-fund: #10B981;
    --color-maes: #FF85A1;





    /* Gradientes */


    --gradient-brand: linear-gradient(135deg, #F97316 0%, #FACC15 100%);


    --gradient-brand-dark: linear-gradient(135deg, #0A192F 0%, #112240 100%);





    --font-main: 'Inter', system-ui, sans-serif;


    


    /* Premium Shadows (Maiores, mais difusas) */


    --shadow-sm: 0 4px 6px -1px rgba(2, 12, 27, 0.05), 0 2px 4px -1px rgba(2, 12, 27, 0.03);


    --shadow-md: 0 10px 15px -3px rgba(2, 12, 27, 0.08), 0 4px 6px -2px rgba(2, 12, 27, 0.04);


    --shadow-lg: 0 25px 50px -12px rgba(2, 12, 27, 0.15);


    


    --radius-full: 999px;


    --radius-md: 16px;


    --radius-lg: 24px;


}





/* ==========================================================================


   Utilitários Premium (Glass & Animations)


   ========================================================================== */


.glass-panel {


    background: rgba(255, 255, 255, 0.85);


    backdrop-filter: blur(16px);


    -webkit-backdrop-filter: blur(16px);


    border: 1px solid rgba(255, 255, 255, 0.4);


    box-shadow: var(--shadow-lg);


}





.animate-on-scroll {


    opacity: 0;


    transform: translateY(30px);


    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);


    will-change: opacity, transform;


}


.animate-on-scroll.is-visible {


    opacity: 1;


    transform: translateY(0);


}


.delay-100 { transition-delay: 100ms; }


.delay-200 { transition-delay: 200ms; }


.delay-300 { transition-delay: 300ms; }





.float-anim {


    animation: floating 4s ease-in-out infinite;


}


@keyframes floating {


    0% { transform: translateY(0px); }


    50% { transform: translateY(-15px); }


    100% { transform: translateY(0px); }


}





* {


    margin: 0;


    padding: 0;


    box-sizing: border-box;


}





body {


    font-family: var(--font-main);


    color: var(--color-text);


    background-color: var(--bg-light);


    overflow-x: hidden;


    -webkit-font-smoothing: antialiased;


}





a {


    text-decoration: none;


    color: inherit;


}





.container {


    width: 100%;


    max-width: 1100px;


    margin: 0 auto;


    padding: 0 20px;


}





.section {


    padding: 40px 0;


}





.section-title {


    text-align: center;


    font-size: 1.5rem;


    font-weight: 700;


    margin-bottom: 30px;


    letter-spacing: 0.5px;


}





/* ==========================================================================


   Header


   ========================================================================== */


.header {


    background: rgba(255, 255, 255, 0.95);


    backdrop-filter: blur(12px);


    border-bottom: 1px solid rgba(30, 43, 90, 0.05);


    position: sticky;


    top: 0;


    z-index: 1000;


}





.header-container {


    display: flex;


    justify-content: space-between;


    align-items: center;


    min-height: 120px;


    padding: 15px 0;


}





.logo {


    display: flex;


    align-items: center;


    text-decoration: none;


}





.brand-logo {


    height: 85px;


    width: auto;


    object-fit: contain;


}





.brand-logo.footer-logo {


    height: 80px;


    background-color: #fff;


    padding: 15px 25px;


    border-radius: var(--radius-md);


    margin-bottom: 5px;


}





.nav {


    display: flex;


    gap: 24px;


    font-size: 0.95rem;


    font-weight: 500;


}





.nav a {


    color: var(--color-text);


    position: relative;


}





.nav a.active::after, .nav a:hover::after {


    content: '';


    position: absolute;


    bottom: -25px;


    left: 0;


    width: 100%;


    height: 3px;


    background-color: var(--color-brand-orange);


}





/* ==========================================================================


   Elegant Hero Section


   ========================================================================== */


.hero-premium {


    position: relative;


    background: var(--gradient-brand-dark);


    min-height: 80vh;


    display: flex;


    align-items: center;


    overflow: hidden;


    padding: 60px 0;


    color: white;


}


.hero-premium::before {


    content: '';


    position: absolute;


    top: -50%; left: -50%;


    width: 200%; height: 200%;


    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.15) 0%, transparent 60%);


    pointer-events: none;


}


.hero-premium-container {


    display: flex;


    align-items: center;


    justify-content: space-between;


    gap: 40px;


    z-index: 2;


    position: relative;


}


.hero-premium-content {


    flex: 1;


    max-width: 600px;


}


.hero-badge {


    display: inline-block;


    padding: 8px 18px;


    background: rgba(255,255,255,0.05);


    border: 1px solid rgba(255,255,255,0.1);


    border-radius: var(--radius-full);


    font-size: 0.85rem;


    font-weight: 600;


    margin-bottom: 24px;


    color: var(--color-brand-yellow);


    letter-spacing: 2px;


    text-transform: uppercase;


    box-shadow: 0 4px 15px rgba(0,0,0,0.1);


}


.hero-premium-content h1 {


    font-size: 3.8rem;


    line-height: 1.1;


    margin-bottom: 24px;


    font-weight: 800;


    letter-spacing: -1px;


}


.hero-premium-content h1 strong {


    background: var(--gradient-brand);


    -webkit-background-clip: text;


    background-clip: text;


    -webkit-text-fill-color: transparent;


    display: inline-block;


}


.hero-subtitle {


    font-size: 1.25rem;


    line-height: 1.6;


    color: #94A3B8;


    margin-bottom: 40px;


}


.hero-actions {


    display: flex;


    gap: 16px;


}


.btn-premium-primary {


    background: var(--gradient-brand);


    color: var(--color-brand-blue-dark);


    padding: 16px 32px;


    font-size: 1.1rem;


    border-radius: var(--radius-full);


    font-weight: 700;


    border: none;


    cursor: pointer;


    box-shadow: var(--shadow-glow);


    transition: transform 0.3s, box-shadow 0.3s;


}


.btn-premium-primary:hover {


    transform: translateY(-2px) scale(1.02);


    box-shadow: 0 0 30px rgba(249, 115, 22, 0.6);


}


.btn-premium-secondary {


    background: rgba(255,255,255,0.05);


    color: white;


    border: 1px solid rgba(255,255,255,0.2);


    padding: 16px 32px;


    font-size: 1.1rem;


    border-radius: var(--radius-full);


    font-weight: 600;


    cursor: pointer;


    transition: all 0.3s;


}


.btn-premium-secondary:hover {


    background: rgba(255,255,255,0.15);


    border-color: rgba(255,255,255,0.4);


}


.hero-premium-visual {


    flex: 1;


    position: relative;


    display: flex;


    justify-content: center;


    align-items: center;


    perspective: 1000px;


    min-height: 400px;


}


.mockup-card {


    width: 340px;


    padding: 30px;


    border-radius: var(--radius-lg);


    background: rgba(255, 255, 255, 0.05);


    transform: rotateY(-15deg) rotateX(10deg);


    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);


    border: 1px solid rgba(255,255,255,0.1);


    box-shadow: var(--shadow-lg);


}


.mockup-card:hover {


    transform: rotateY(0deg) rotateX(0deg) scale(1.05);


}


.mockup-header {


    display: flex;


    align-items: center;


    gap: 12px;


    margin-bottom: 25px;


    font-size: 1rem;


    font-weight: 600;


    color: var(--color-brand-yellow);


}


.mockup-header i { font-size: 1.8rem; }


.mockup-body h3 {


    font-size: 3rem;


    font-weight: 800;


    margin-bottom: 5px;


    color: white;


}


.mockup-body p { color: #94A3B8; font-size: 1.1rem;}


.mockup-card-small {


    position: absolute;


    bottom: 20px;


    right: 0px;


    padding: 15px 25px;


    border-radius: var(--radius-md);


    font-weight: 600;


    font-size: 1.1rem;


    background: rgba(16, 185, 129, 0.15);


    border: 1px solid rgba(16, 185, 129, 0.3);


    color: white;


    backdrop-filter: blur(8px);


    box-shadow: 0 10px 25px rgba(0,0,0,0.2);


}





/* Responsividade Básica do Hero */


@media (max-width: 900px) {


    .hero-premium-container {


        flex-direction: column;


        text-align: center;


        padding-top: 40px;


    }


    .hero-premium-content h1 { font-size: 2.8rem; }


    .hero-actions { justify-content: center; flex-direction: column; }


    .mockup-card { transform: none; width: 100%; max-width: 340px; }


}





/* ==========================================================================


   Lower Content Area (Beach Background)


   ========================================================================== */


.lower-content-area {


    background-image: url('img/beach.png'); /* Ceará Beach background */


    background-size: cover;


    background-position: center;


    background-attachment: fixed;


    min-height: 60vh;


    padding-bottom: 60px;


    position: relative;


}





/* Overlay to make content readable while keeping background visible */


.lower-content-area::before {


    content: '';


    position: absolute;


    top: 0;


    left: 0;


    width: 100%;


    height: 100%;


    background: linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 100%);


    pointer-events: none;


}





.works-section, .active-events-section {


    position: relative;


    z-index: 2;


}





/* ==========================================================================


   Como Funciona


   ========================================================================== */


.steps-row {


    display: flex;


    justify-content: center;


    gap: 40px;


    flex-wrap: wrap;


}





.step-item {


    text-align: center;


    max-width: 180px;


}





.step-icon {


    font-size: 2.2rem;


    margin-bottom: 15px;


    display: flex;


    justify-content: center;


    gap: 8px;


    color: var(--color-brand-blue-dark);


}





.step-item h3 {


    font-size: 1rem;


    font-weight: 700;


    margin-bottom: 8px;


    color: var(--color-brand-blue);


}





.step-item p {


    font-size: 0.85rem;


    color: var(--color-text-muted);


    line-height: 1.4;


}





/* ==========================================================================


   Celebrações Ativas


   ========================================================================== */


.cards-row {


    display: flex;


    justify-content: center;


    gap: 30px;


    flex-wrap: wrap;


}





.event-card {


    background: rgba(255, 255, 255, 0.9);


    backdrop-filter: blur(12px);


    border-radius: var(--radius-lg);


    box-shadow: var(--shadow-md);


    border: 1px solid rgba(255,255,255,1);


    width: 320px;


    padding: 20px;


    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);


}





.event-card:hover {


    transform: translateY(-8px);


    box-shadow: var(--shadow-lg);


}





.card-header {


    display: flex;


    align-items: center;


    gap: 15px;


    margin-bottom: 20px;


}





.profile-pic {


    width: 60px;


    height: 60px;


    border-radius: 50%;


    background-size: cover;


    background-position: center;


    border: 3px solid #fff;


    box-shadow: var(--shadow-md);


}





.profile-info {


    display: flex;


    flex-direction: column;


}





.profile-info .name {


    font-weight: 700;


    font-size: 1rem;


}





.profile-info .location {


    font-size: 0.8rem;


    color: var(--color-text-muted);


}





.card-body {


    background-color: #fff;


    border-radius: var(--radius-lg);


    padding: 15px;


    text-align: center;


    box-shadow: var(--shadow-md);


}





.card-body h3 {


    font-size: 0.95rem;


    font-weight: 600;


    margin-bottom: 10px;


}





.action-link {


    font-size: 0.85rem;


    font-weight: 700;


    color: #4a824e; /* Green matching "[ 🎁 Dar Mimo ]" */


}





.action-link:hover {


    text-decoration: underline;


}





/* ==========================================================================


   Autenticação & Onboarding (Login, Criar Lista)


   ========================================================================== */


.auth-body {


    background-color: #f9fafb;


    display: flex;


    flex-direction: column;


    min-height: 100vh;


}





.auth-header {


    background-color: transparent;


    border-bottom: none;


    padding-top: 20px;


    position: absolute;


    width: 100%;


}





.auth-link {


    font-size: 0.9rem;


    font-weight: 600;


    color: var(--color-text);


    padding: 8px 16px;


    border: 1px solid #e5e7eb;


    border-radius: var(--radius-full);


    background: #fff;


}


.auth-link:hover { background-color: #f9fafb; }





.auth-main {


    flex: 1;


    display: flex;


    align-items: center;


    justify-content: center;


    padding: 100px 20px 40px 20px;


    background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.05), transparent 40%),


                radial-gradient(circle at bottom left, rgba(30, 43, 90, 0.05), transparent 40%);


    background-color: var(--bg-light);


    position: relative;


}





.auth-main::before {


    display: none;


}





.auth-container {


    position: relative;


    z-index: 2;


    width: 100%;


    max-width: 450px;


}





.auth-container.large-container {


    max-width: 800px;


}





.auth-card {


    background: #fff;


    padding: 40px;


    border-radius: var(--radius-lg);


    box-shadow: var(--shadow-lg);


    border: 1px solid rgba(30, 43, 90, 0.05);


}





.text-center { text-align: center; }





.auth-card h2 {


    font-size: 1.8rem;


    margin-bottom: 10px;


    color: var(--color-text);


}





.auth-subtitle {


    color: var(--color-text-muted);


    font-size: 0.95rem;


    margin-bottom: 30px;


}





.btn-social {


    width: 100%;


    padding: 14px;


    display: flex;


    align-items: center;


    justify-content: center;


    gap: 12px;


    background: #fff;


    border: 1px solid #E2E8F0;


    border-radius: var(--radius-md);


    font-weight: 600;


    cursor: pointer;


    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);


    font-family: var(--font-main);


    color: var(--color-text);


    box-shadow: var(--shadow-sm);


}





.btn-social:hover {


    background-color: #F8FAFC;


    border-color: #CBD5E1;


    transform: translateY(-1px);


    box-shadow: var(--shadow-md);


}





.btn-social img {


    width: 20px;


}





.auth-divider {


    display: flex;


    align-items: center;


    text-align: center;


    margin: 25px 0;


    color: #9ca3af;


    font-size: 0.85rem;


}





.auth-divider::before, .auth-divider::after {


    content: '';


    flex: 1;


    border-bottom: 1px solid #e5e7eb;


}





.auth-divider span {


    padding: 0 10px;


}





.login-error {


    background-color: #fee2e2; /* Vermelho claro */


    color: #b91c1c; /* Text vermelho escuro */


    padding: 12px;


    border-radius: 8px;


    font-size: 0.9rem;


    margin-bottom: 20px;


    border: 1px solid #fecaca;


    text-align: center;


}





.login-error.hidden {


    display: none;


}





.input-group {


    margin-bottom: 20px;


    text-align: left;


}





.input-group label {


    display: block;


    font-size: 0.9rem;


    font-weight: 500;


    margin-bottom: 6px;


    color: var(--color-text);


}





.label-row {


    display: flex;


    justify-content: space-between;


    align-items: center;


}





.forgot-password {


    font-size: 0.8rem;


    color: #3b82f6; /* Blue */


}





.forgot-password:hover { text-decoration: underline; }





.input-group input {


    width: 100%;


    padding: 14px 16px;


    border: 1px solid #E2E8F0;


    border-radius: var(--radius-md);


    font-family: inherit;


    font-size: 0.95rem;


    color: var(--color-text);


    background: #F8FAFC;


    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);


}





.input-group input:focus {


    outline: none;


    border-color: var(--color-brand-orange);


    background: #fff;


    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);


}





.btn-auth {


    width: 100%;


    background: var(--gradient-brand-dark);


    color: #fff;


    border-radius: var(--radius-md);


    padding: 14px;


    font-size: 1rem;


    font-weight: 600;


    margin-top: 10px;


    border: none;


    box-shadow: var(--shadow-md);


    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);


}





.btn-auth:hover {


    transform: translateY(-2px);


    box-shadow: var(--shadow-lg);


}





.auth-footer {


    text-align: center;


    margin-top: 25px;


    font-size: 0.9rem;


    color: var(--color-text-muted);


}





.auth-footer a {


    color: #3b82f6;


    font-weight: 500;


}





/* Creation Options (Onboarding) */


.creation-options {


    display: grid;


    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));


    gap: 20px;


    margin-top: 30px;


}





.create-card {


    border: 2px solid #E2E8F0;


    border-radius: var(--radius-lg);


    padding: 40px 20px;


    text-align: center;


    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);


    cursor: pointer;


    background: #fff;


    display: block;


    box-shadow: var(--shadow-sm);


}





.create-card:hover {


    transform: translateY(-8px);


    box-shadow: var(--shadow-lg);


    border-color: var(--color-brand-orange);


}





.choice-baby:hover { border-color: var(--color-baby); }


.choice-wedding:hover { border-color: var(--color-wedding); }


.choice-birthday:hover { border-color: var(--color-birthday); }





.choice-icon {


    font-size: 2.5rem;


    margin-bottom: 15px;


    color: var(--color-text-muted);


    transition: color 0.2s;


}





.choice-baby:hover .choice-icon { color: var(--color-baby); }


.choice-wedding:hover .choice-icon { color: var(--color-wedding); }


.choice-birthday:hover .choice-icon { color: var(--color-birthday); }





.create-card h3 {


    font-size: 1.1rem;


    margin-bottom: 8px;


    color: var(--color-text);


}





.create-card p {


    font-size: 0.85rem;


    color: var(--color-text-muted);


}





/* ==========================================================================


   Página de Busca (Encontrar Lista)


   ========================================================================== */


.search-body {


    background-color: #f9fafb;


}





.search-hero {


    background: var(--gradient-brand-dark);


    padding: 100px 20px;


    color: #fff;


    text-align: center;


}





.search-hero h1 {


    font-size: 2.5rem;


    margin-bottom: 15px;


    color: #fff;


}





.search-hero p {


    color: #9ca3af;


    max-width: 600px;


    margin: 0 auto 40px auto;


}





.search-bar {


    display: flex;


    max-width: 600px;


    margin: 0 auto;


    background: #fff;


    border-radius: var(--radius-full);


    padding: 8px;


    box-shadow: 0 10px 25px rgba(0,0,0,0.2);


    position: relative;


    align-items: center;


}





.search-icon {


    color: #9ca3af;


    margin-left: 15px;


    font-size: 1.2rem;


}





.search-input {


    flex: 1;


    border: none;


    padding: 12px 15px;


    font-size: 1rem;


    border-radius: var(--radius-full);


    outline: none;


    font-family: inherit;


    color: var(--color-text);


}





.btn-search {


    background-color: var(--color-btn-birthday); /* Greenish */


    color: #fff;


    padding: 12px 30px;


    margin: 0;


}





.search-results {


    padding: 60px 20px;


}





.results-title {


    font-size: 1.5rem;


    margin-bottom: 30px;


}





/* ==========================================================================


   FAQ Section


   ========================================================================== */


.faq-section {


    background-color: #f9fafb;


    padding: 60px 0;


}





.faq-accordion {


    max-width: 800px;


    margin: 0 auto;


    display: flex;


    flex-direction: column;


    gap: 15px;


}





.faq-item {


    background: #fff;


    padding: 25px 30px;


    border-radius: var(--radius-md);


    box-shadow: var(--shadow-sm);


    border: 1px solid #E2E8F0;


    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);


}





.faq-item:hover {


    box-shadow: var(--shadow-md);


}





.faq-item h4 {


    font-size: 1.05rem;


    font-weight: 600;


    margin-bottom: 10px;


    display: flex;


    align-items: center;


    gap: 10px;


    color: var(--color-text);


}





.faq-item h4 i {


    color: var(--color-brand-orange);


}





.faq-item p {


    color: var(--color-text-muted);


    font-size: 0.95rem;


    line-height: 1.5;


    padding-left: 28px; /* alinhar com o texto após o ícone */


}





/* ==========================================================================


   Hero Section Global para Páginas Secundárias


   ========================================================================== */


.faq-hero,


.terms-hero {


    border-bottom-left-radius: 60px;


    border-bottom-right-radius: 60px;


}





/* Vitrine Hero & Public Hero arredondados na base */


.vitrine-hero,


.public-hero,


.search-mega-hero {


    border-bottom-left-radius: 50px;


    border-bottom-right-radius: 50px;


}





/* ==========================================================================


   Professional Footer


   ========================================================================== */


.footer {


    background-color: var(--color-brand-blue-dark);


    color: #F8FAFC;


    padding: 80px 0 30px 0;


    font-size: 0.95rem;


    border-top-left-radius: 40px;


    border-top-right-radius: 40px;


    margin-top: 40px;


    position: relative;


}





.footer-content {


    display: flex;


    flex-wrap: wrap;


    gap: 40px;


    justify-content: space-between;


    margin-bottom: 40px;


    border-bottom: 1px solid rgba(255,255,255,0.1);


    padding-bottom: 40px;


}





.footer-col {


    flex: 1;


    min-width: 200px;


}





.footer-col.brand-col {


    flex: 2;


    min-width: 300px;


}





.footer-col .logo {


    color: #fff;


    margin-bottom: 15px;


}





.footer-col h3 {


    font-size: 1.15rem;


    font-weight: 700;


    margin-bottom: 20px;


    color: var(--color-brand-yellow);


}





.footer-col ul {


    list-style: none;


}





.footer-col ul li {


    margin-bottom: 10px;


}





.footer-col ul li a {


    color: #9ca3af;


    transition: color 0.2s;


}





.footer-col ul li a:hover {


    color: #fff;


}





.footer-col p {


    color: #9ca3af;


    margin-bottom: 10px;


    display: flex;


    align-items: center;


    gap: 8px;


    line-height: 1.5;


}





.security-badges {


    display: flex;


    gap: 15px;


    font-size: 2rem;


    margin-bottom: 15px;


    color: #e5e7eb;


}





.ssl-text {


    font-weight: 600;


    color: #10b981 !important; /* Verde segurança */


}





.footer-bottom {


    display: flex;


    justify-content: space-between;


    align-items: center;


    color: #6b7280;


    font-size: 0.85rem;


    flex-wrap: wrap;


    gap: 15px;


}





.legal-links {


    display: flex;


    gap: 20px;


}





.legal-links a {


    color: #6b7280;


}





.legal-links a:hover {


    color: #9ca3af;


}





/* ==========================================================================


   Elementos de Confiança & Suporte


   ========================================================================== */


.whatsapp-float {


    position: fixed;


    bottom: 30px;


    right: 30px;


    background-color: #25d366;


    color: #fff;


    width: 60px;


    height: 60px;


    border-radius: 50%;


    display: flex;


    justify-content: center;


    align-items: center;


    font-size: 2.2rem;


    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);


    z-index: 1000;


    transition: transform 0.2s;


}





.whatsapp-float:hover {


    transform: scale(1.1);


    color: #fff;


}





.rates-transparency {


    margin-top: 30px;


    background: #f0fdf4; /* Verde claro */


    border: 1px solid #bbf7d0;


    border-radius: 12px;


    padding: 20px;


    color: #166534;


    text-align: left;


    font-size: 0.95rem;


    line-height: 1.5;


}





.rates-transparency i {


    color: #16a34a;


    font-size: 1.2rem;


    margin-right: 5px;


    vertical-align: middle;


}





/* ==========================================================================


   Image Showcase (O que você vai celebrar?)


   ========================================================================== */


.showcase-grid {


    display: grid;


    grid-template-columns: repeat(5, 1fr);


    gap: 20px;


    margin-top: 40px;


}


.showcase-card {


    position: relative;


    border-radius: var(--radius-lg);


    overflow: hidden;


    height: 380px;


    cursor: pointer;


    box-shadow: var(--shadow-sm);


    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);


}


.showcase-card:hover {


    transform: translateY(-8px);


    box-shadow: var(--shadow-xl);


}


.showcase-img {


    width: 100%;


    height: 100%;


    object-fit: cover;


    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);


}


.showcase-card:hover .showcase-img {


    transform: scale(1.08);


}


.showcase-overlay {


    position: absolute;


    bottom: 0; left: 0;


    width: 100%; height: 60%;


    background: linear-gradient(to top, rgba(2,12,27,0.65) 0%, rgba(2,12,27,0.08) 50%, transparent 100%);


    display: flex;


    flex-direction: column;


    justify-content: flex-end;


    padding: 25px;


}


.showcase-title {


    color: white;


    font-size: 1.4rem;


    font-weight: 800;


    margin-bottom: 5px;


    text-shadow: 0 2px 4px rgba(0,0,0,0.5);


}


.showcase-subtitle {


    color: rgba(255,255,255,0.85);


    font-size: 0.95rem;


    font-weight: 500;


}





/* ==========================================================================


   Responsive


   ========================================================================== */


@media (max-width: 1024px) {


    .showcase-grid {


        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));


    }


}


@media (max-width: 768px) {


    .nav {


        display: none;


    }


    


    .hero {


        flex-direction: column;


        height: auto;


    }


    


    .hero-col {


        height: 300px;


    }


    


    .hero-pill-container {


        top: 20px;


        transform: translateY(0);


    }


    


    .hero-pill h1 {


        font-size: 0.9rem;


    }


}





/* ==========================================================================


   Phase 3: New Features Styles


   ========================================================================= */





/* Testimonials */


.testimonials-grid {


    display: grid;


    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));


    gap: 30px;


    margin-top: 40px;


}


.testimonial-card {


    background: white;


    padding: 35px;


    border-radius: var(--radius-lg);


    box-shadow: var(--shadow-md);


    border: 1px solid #e2e8f0;


    transition: all 0.3s;


    position: relative;


}


.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }


.testimonial-quote { font-size: 1.1rem; color: var(--color-text); font-style: italic; margin-bottom: 25px; line-height: 1.6; position: relative; }


.testimonial-quote::before { content: '“'; font-size: 4rem; position: absolute; top: -20px; left: -10px; opacity: 0.1; color: var(--color-brand-orange); }


.testimonial-user { display: flex; align-items: center; gap: 15px; }


.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-brand-orange); }


.testimonial-info h4 { margin: 0; font-size: 1rem; color: var(--color-brand-blue-dark); }


.testimonial-info span { font-size: 0.85rem; color: var(--color-text-muted); }





/* Mural de Recados */


.mural-section { background: white; padding: 60px 0; border-top: 1px solid #e2e8f0; }


.mural-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; }


.message-card { background: #fffbeb; border: 1px solid #fde68a; padding: 20px; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); transform: rotate(-1deg); transition: 0.3s; }


.message-card:nth-child(even) { transform: rotate(1deg); background: #f0fdf4; border-color: #bbf7d0; }


.message-card:hover { transform: rotate(0) scale(1.03); z-index: 10; }


.message-text { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: #1e293b; margin-bottom: 12px; line-height: 1.5; }


.message-author { font-weight: 700; font-size: 0.85rem; color: var(--color-brand-blue-dark); display: flex; justify-content: space-between; }





/* Golden Button - Instant PIX */


.btn-instant-pix {


    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);


    color: #000;


    font-weight: 800;


    text-transform: uppercase;


    letter-spacing: 1px;


    border: none;


    padding: 12px 24px;


    border-radius: var(--radius-full);


    cursor: pointer;


    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);


    transition: all 0.3s;


    display: inline-flex;


    align-items: center;


    gap: 8px;


    font-size: 0.9rem;


}


.btn-instant-pix:hover {


    transform: translateY(-2px) scale(1.05);


    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.6);


}





/* Affiliate Progress */


.affiliate-progress-container { margin-top: 20px; }


.progress-bar-bg { background: #e2e8f0; height: 10px; border-radius: 5px; overflow: hidden; margin: 10px 0; }


.progress-bar-fill { background: var(--gradient-brand); height: 100%; border-radius: 5px; transition: width 0.5s; }


.progress-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--color-text-muted); font-weight: 600; }





/* Theme Store */


.theme-store-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 20px; }


.theme-card { border: 2px solid #e2e8f0; border-radius: 16px; overflow: hidden; transition: 0.3s; cursor: pointer; background: #fff; }


.theme-card:hover { border-color: var(--color-brand-orange); transform: translateY(-5px); }


.theme-preview { height: 120px; background-size: cover; background-position: center; border-bottom: 2px solid #f1f5f9; }


.theme-info { padding: 15px; }


.theme-info h4 { margin: 0 0 5px 0; font-size: 1rem; }


.theme-price { color: var(--color-brand-orange); font-weight: 800; font-size: 1.1rem; }


.theme-badge { position: absolute; top: 10px; right: 10px; background: var(--color-brand-orange); color: white; padding: 4px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; }





/* Fee Toggle Switch */


.fee-toggle { display: flex; background: #f1f5f9; border-radius: 30px; padding: 4px; gap: 4px; margin-top: 10px; }


.fee-option { flex: 1; text-align: center; padding: 8px; border-radius: 25px; cursor: pointer; font-size: 0.85rem; font-weight: 600; transition: 0.3s; user-select: none; }


.fee-option.active { background: white; color: var(--color-brand-orange); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }





/* Toast Notifications */


.toast {


    position: fixed; bottom: 20px; right: 20px;


    background: #fff; color: #1e293b;


    padding: 14px 24px; border-radius: 8px;


    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);


    display: flex; align-items: center; gap: 12px;


    font-weight: 600; font-size: 0.95rem;


    transform: translateY(100px); opacity: 0;


    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);


    z-index: 9999;


}


.toast.toast-success { border-left: 4px solid #10b981; }


.toast.toast-error { border-left: 4px solid #ef4444; }


.toast.toast-info { border-left: 4px solid #0f172a; }


.toast i { font-size: 1.25rem; }


.toast.toast-success i { color: #10b981; }


.toast.toast-error i { color: #ef4444; }


.toast.toast-info i { color: #0f172a; }


.toast.show { transform: translateY(0); opacity: 1; }





/* Empty States & Modals */


.empty-state-global { text-align: center; padding: 60px 20px; background: white; border-radius: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); margin-top: 20px; }


.empty-state-global i { font-size: 3.5rem; color: #cbd5e1; margin-bottom: 20px; }


.empty-state-global h3 { margin: 0 0 12px 0; color: #1e293b; font-size: 1.4rem; font-weight: 800; }


.empty-state-global p { color: #64748b; font-size: 1rem; max-width: 450px; margin: 0 auto 25px auto; line-height: 1.5; }





.modal-overlay {


    position: fixed; top: 0; left: 0; right: 0; bottom: 0;


    background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(4px);


    display: flex; align-items: center; justify-content: center;


    z-index: 99999; opacity: 0; pointer-events: none; transition: 0.3s ease;


}


.modal-overlay.active { opacity: 1; pointer-events: auto; }


.modal-content {


    background: white; border-radius: 16px; padding: 35px;


    width: 90%; max-width: 420px; position: relative;


    transform: translateY(20px) scale(0.95); transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);


}


.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }


.modal-close {


    position: absolute; top: 20px; right: 20px;


    background: #f1f5f9; border: none; width: 32px; height: 32px; border-radius: 50%;


    color: #64748b; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.2s;


}


.modal-close:hover { background: #e2e8f0; color: #0f172a; }


.modal-title { font-size: 1.3rem; font-weight: 800; margin: 0 0 8px 0; color: #0f172a; }


.modal-desc { font-size: 0.95rem; color: #64748b; margin: 0 0 25px 0; line-height: 1.5; }


.form-input-lg { width: 100%; padding: 14px 16px; border: 2px solid #e2e8f0; border-radius: 10px; font-size: 1.1rem; font-family: inherit; font-weight: 600; margin-bottom: 20px; color: #0f172a; outline: none; transition: 0.2s; }


.form-input-lg:focus { border-color: #f97316; }





/* Footer Logo */


.footer-col.brand-col a img {


    max-height: 55px;


    width: auto;


    display: block;


    object-fit: contain;


    border: none;


    background: none;


    box-shadow: none;


    outline: none;


    padding: 0;


    margin-bottom: 14px;


}


.footer-col.brand-col a {


    display: inline-block;


    border: none;


    background: none;


    text-decoration: none;


}





/* FINAL LOGO OVERRIDE: NO EFFECTS, NO TEXT, NO BOXES */


.brand-logo, 


.footer-logo, 


.logo img, 


.logo-text img, 


.footer-col.brand-col a img,


.dash-header .logo-text img {


    background: transparent !important;


    background-color: transparent !important;


    border: none !important;


    box-shadow: none !important;


    outline: none !important;


    padding: 0 !important;


    margin: 0 !important;


    display: block !important;


    max-height: 110px !important;


    width: auto !important;


    object-fit: contain !important;


}





/* Premium Logo Distinction */


.premium-logo:hover, .footer-logo-link img:hover {


    transform: scale(1.03);


    filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.4));


}





.footer-wordmark { display: none !important; }


.footer-col.brand-col { display: flex; flex-direction: column; align-items: flex-start; }


.footer-col.brand-col a { margin-bottom: 12px; border: none !important; background: none !important; }





/* ==========================================================================


   Dark Page Shared Utilities (Used by dark-themed pages: FAQ, Parceiros, etc)


   ========================================================================== */





/* Dark sticky header variant */


.header.dark-header {


    background: rgba(2, 12, 27, 0.92);


    border-bottom: 1px solid rgba(255,255,255,0.06);


    backdrop-filter: blur(16px);


}


.header.dark-header .nav a {


    color: rgba(255,255,255,0.75);


}


.header.dark-header .nav a:hover,


.header.dark-header .nav a.active {


    color: #fff;


    opacity: 1;


}


.header.dark-header .nav a.active::after,


.header.dark-header .nav a:hover::after {


    background-color: #F97316;


}





/* Shared eyebrow pill for dark heroes */


.eyebrow {


    display: inline-block;


    background: rgba(249, 115, 22, 0.12);


    color: #fb923c;


    border: 1px solid rgba(249, 115, 22, 0.3);


    border-radius: 100px;


    font-size: 0.78rem;


    font-weight: 700;


    letter-spacing: 2px;


    text-transform: uppercase;


    padding: 5px 18px;


    margin-bottom: 20px;


}





/* ==========================================================================


   Mobile & Responsive Adjustments (App-like experience)


   ========================================================================== */





/* Hamburger menu button */


.mobile-menu-toggle {


    display: none;


    background: transparent;


    border: none;


    color: var(--color-brand-orange);


    font-size: 1.8rem;


    cursor: pointer;


    z-index: 1001; /* Keep above the mobile menu */


}





/* Base mobile menu container hidden initially */


.nav-mobile-container {


    display: none;


}





@media (max-width: 950px) {


    /* Header adjustments */


    .header-container { min-height: 80px; }


    


    /* Reveal toggle button */


    .mobile-menu-toggle { display: block; }


    


    /* Hide desktop nav */


    .nav { display: none; }





    /* Mobile Nav styling */


    .nav-mobile-container {


        display: none; /* Block when active via JS */


        position: fixed;


        top: 0;


        left: 0;


        width: 100vw;


        height: 100vh;


        background: rgba(2, 12, 27, 0.98);


        backdrop-filter: blur(20px);


        z-index: 999;


        flex-direction: column;


        justify-content: center;


        align-items: center;


        gap: 30px;


    }





    .nav-mobile-container.active {


        display: flex;


        animation: fadeIn 0.3s ease-out;


    }





    .nav-mobile-container a {


        font-size: 1.5rem;


        font-weight: 700;


        color: rgba(255,255,255,0.8);


        text-decoration: none;


        transition: all 0.3s;


    }


    


    .nav-mobile-container a:hover,


    .nav-mobile-container a.active {


        color: #fff;


        transform: scale(1.05);


    }


    


    /* Dash Header (Admin/Dashboard) */


    .dash-header-inner {


        flex-wrap: wrap;


        gap: 12px;


        justify-content: center; /* Center logo and actions */


    }


    .dash-user {


        flex-wrap: wrap;


        justify-content: center;


        width: 100%;


    }


    


    /* Showcase grid in index */


    .showcase-grid {


        display: grid;


        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));


        gap: 20px;


    }


    .hero-premium-container {


        padding-top: 20px;


    }


}





@media (max-width: 500px) {


    .dash-user .badge-user {


        display: none; /* Hide user email on small screens to save space */


    }


    .kpi-grid {


        grid-template-columns: 1fr 1fr; /* 2 columns for KPIs */


        gap: 15px;


    }


    .kpi-card {


        padding: 18px 12px;


        gap: 10px;


        flex-direction: column;


        text-align: center;


    }


    .kpi-icon {


        width: 45px; height: 45px; font-size: 1.3rem; 


    }


    .kpi-value { font-size: 1.25rem; }


    


    /* Smaller hero video font */


    .hero-video-content h1 { font-size: 2.2rem; }


    .btn-video-primary { width: 100%; justify-content: center; padding: 14px; }


    .btn-video-secondary { width: 100%; justify-content: center; padding: 14px; }


    .hero-trust-row { flex-direction: column; align-items: center; }


}





@keyframes fadeIn {


    from { opacity: 0; transform: translateY(-10px); }


    to { opacity: 1; transform: translateY(0); }


}





/* ==========================================================================


   Dashboard Welcome & Vitrine Hero — Mobile Padding Fixes


   ========================================================================== */


@media (max-width: 600px) {


    /* Dashboard welcome banner */


    .dash-welcome {


        padding: 30px 20px !important;


        flex-direction: column;


        text-align: center;


    }


    .dash-welcome-text h1 { font-size: 1.65rem !important; }


    .dash-welcome-text p { font-size: 0.95rem; }


    


    /* Vitrine Hero (minha-vitrine.html) */


    .vitrine-hero { padding: 120px 16px 50px !important; }


    


    /* Products section in convite */


    .products-section { padding: 40px 0 60px; }


}


/* ==========================================================================
   GLAMOUR MOBILE — Extra polish (Canto do Mimo)
   ========================================================================== */
/* GLAMOUR MOBILE */

/* Hero: hide right-side mockup cards on mobile */
@media (max-width: 768px) {
    .hero-video-visual { display: none !important; }

    .hero-video-container {
        padding-top: 90px !important;
        padding-bottom: 60px !important;
    }
    .hero-video-content h1 {
        font-size: 2.3rem !important;
        letter-spacing: -0.5px;
    }
    .hero-video-subtitle { font-size: 1rem !important; }
    .hero-event-label { display: none !important; }
    .video-progress-dots { bottom: 20px; }

    .showcase-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 14px !important;
    }

    .cta-dark-section { padding: 60px 0 !important; }
    .cta-dark-section h2 { font-size: 2rem !important; }

    .footer-content { gap: 28px; flex-direction: column; }
    .footer-col.brand-col { min-width: unset; }
    .footer-col { min-width: unset; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .legal-links { justify-content: center; flex-wrap: wrap; gap: 14px; }

    .header-container { min-height: 72px; padding: 10px 16px; }
    .steps-row { gap: 24px; }
    .step-item { max-width: 150px; }
    .testimonials-grid { flex-direction: column !important; gap: 16px !important; }
    .whatsapp-float { bottom: 20px !important; right: 14px !important; }
}

@media (max-width: 480px) {
    .showcase-grid { grid-template-columns: 1fr !important; }
    .hero-video-content h1 { font-size: 2rem !important; }
    .hero-trust-row { gap: 8px; }
    .trust-badge { font-size: 0.72rem; padding: 5px 12px; }
    .steps-row { flex-direction: column; align-items: center; }
    .step-item { max-width: 100%; }
}

/* Extra shine on KPI cards */
.kpi-card {
    position: relative;
    overflow: hidden;
}
.kpi-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255,183,3,0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Showcase grid on index */
.showcase-grid.inline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 900px) {
    .showcase-grid.inline-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .showcase-grid.inline-grid { grid-template-columns: 1fr; }
}

/* Showcase card hover glamour */
.showcase-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    aspect-ratio: 3/4;
}
.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.showcase-card:hover .showcase-img { transform: scale(1.06); }
.showcase-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}
.showcase-title { font-size: 1.15rem; font-weight: 800; color: #fff; margin: 0 0 4px; text-shadow: 0 2px 8px rgba(0,0,0,0.8); }
.showcase-subtitle { font-size: 0.82rem; color: rgba(255,255,255,0.9); margin: 0; text-shadow: 0 2px 6px rgba(0,0,0,0.8); }

/* Glamour pulse on primary CTA buttons */
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(249,115,22,0.45); }
    50% { box-shadow: 0 12px 48px rgba(249,115,22,0.7); }
}
.btn-video-primary {
    animation: ctaPulse 3s ease-in-out infinite;
}

/* Glassmorphism testimonial cards */
.testimonials-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.testimonial-card {
    flex: 1;
    min-width: 260px;
    padding: 28px !important;
    border-radius: 20px !important;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1) !important;
}
.testimonial-quote { font-size: 0.95rem; line-height: 1.7; }
.testimonial-user { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(249,115,22,0.4);
}

/* ── Showcase mobile: layout limpo ── */

/* Tablets (600px–768px): 2 colunas quadradas */
@media (max-width: 768px) {
    .showcase-grid.inline-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }
    .showcase-card {
        height: auto !important;
        width: 100% !important;
        aspect-ratio: 1 / 1 !important;  /* quadrado — imagem aparece completa */
        border-radius: 16px !important;
    }
    /* Remove o hack do último card ímpar */
    .showcase-card:last-child:nth-child(odd) {
        grid-column: unset !important;
        aspect-ratio: 1 / 1 !important;
    }
}

/* Celulares pequenos (abaixo de 500px): coluna única, retrato */
@media (max-width: 500px) {
    .showcase-grid.inline-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .showcase-card {
        height: auto !important;
        width: 100% !important;
        aspect-ratio: 4 / 3 !important;  /* paisagem largo numa coluna — bonito */
        border-radius: 16px !important;
    }
    .showcase-card:last-child:nth-child(odd) {
        grid-column: unset !important;
        aspect-ratio: 4 / 3 !important;
    }
}
