/* Fonts - Same as the App */
@font-face {
    font-family: 'Aceh';
    src: url('../assets/fonts/Aceh-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Aceh';
    src: url('../assets/fonts/Aceh-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Aceh';
    src: url('../assets/fonts/Aceh-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Aceh';
    src: url('../assets/fonts/Aceh-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Base Colors from App Theme */
:root {
    --primary: #004C59;
    /* Deep Teal */
    --primary-dark: #003640;
    --primary-light: #006373;

    --secondary: #FE6218;
    /* Vibrant Orange */
    --secondary-hover: #E5500D;

    --background: #F0FFFF;
    /* Light Cyan */
    --surface: #FFFFFF;
    /* White */
    --surface-alt: #F5F7FA;
    /* Slightly darker surface */

    --text-primary: #004b55;
    /* Dark Jungle Green */
    --text-secondary: #546E7A;
    --text-on-dark: #FFFFFF;

    --border: #CFD8DC;
    --shadow-soft: 0 10px 30px rgba(0, 76, 89, 0.08);

    --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 16px;
}

/* Reset & Utilities */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Aceh', 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    /* Aceh doesn't have 700, so we use 600 (SemiBold) */
    line-height: 1.2;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    border: none;
    transition: transform 0.2s var(--transition);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text-on-dark);
}

.btn-secondary:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
}

.btn-cta {
    background: var(--secondary);
    color: var(--text-on-dark);
    font-size: 1.1rem;
    padding: 16px 40px;
}

.btn-cta:hover {
    background: var(--secondary-hover);
    transform: translateY(-3px);
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    /* Unificado com o fundo da Hero */
    backdrop-filter: none;
    border-bottom: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 8px;
}

.nav-link:hover {
    color: #FFFFFF;
}

/* Underline effect like the reference image */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary);
    /* Orange like the app */
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: none;
    /* Reference image doesn't have a button in the header */
}

/* --- New Hero Section matching exact Layout (Banner 2) --- */
.banner-header {
    background: transparent;
    padding: 15px 0;
}

.logo-img-new {
    height: 38px;
    /* Aumentado conforme solicitado */
}

.uppercase-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.uppercase-nav .nav-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0;
}

.uppercase-nav .nav-link::after {
    display: none;
}

.nav-dot {
    color: #fff;
    font-size: 0.6rem;
    opacity: 0.8;
}

.new-hero-layout {
    position: relative;
    /* Fundo degradê idêntico ao da imagem, focando luz no celular à esquerda */
    background: radial-gradient(circle at 30% 50%, #006b78 0%, #004b55 40%, #003038 100%);
    padding-top: 130px;
    padding-bottom: 80px;
    overflow: hidden;
    color: #FFFFFF;
}

/* --- Background Decorativo --- */
.hero-bg-decorative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.elegant-circle {
    position: absolute;
    top: 50%;
    left: 20%;
    /* Focado atrás do celular */
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.c-inner {
    width: 500px;
    height: 500px;
}

.c-mid {
    width: 900px;
    height: 900px;
    border-color: rgba(255, 255, 255, 0.03);
}

.c-outer {
    width: 1400px;
    height: 1400px;
    border-color: rgba(255, 255, 255, 0.02);
}

.bg-division {
    position: absolute;
    width: 35px;
    height: 35px;
    opacity: 1;
    /* Imagem base agora será usada diretamente na tag HTML <img>, preservando sua cor original */
}

.div-1 {
    top: 15%;
    left: 15%;
}

.div-2 {
    top: 10%;
    right: 15%;
}

.div-3 {
    bottom: 15%;
    left: 40%;
}

.new-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* --- 3D Premium iPhone Mockup --- */
.new-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone-img-v2 {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Textos da Direita */
.new-hero-text {
    flex: 1.5;
    max-width: 580px;
    text-align: left;
    margin-top: 0;
    display: flex;
    flex-direction: column;
}

.new-hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-align: left;
    text-transform: uppercase;
    color: #FFFFFF;
}

.hero-line-top {
    display: block;
}

.underline-highlight {
    position: relative;
    display: inline-block;
}

.underline-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary);
    z-index: -1;
    opacity: 0.8;
}

.new-hero-description {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    width: 100%;
    text-align: left;
}

.hero-bullets-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.horizontal-bullet {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}

.horizontal-bullet strong {
    color: #FFF;
    font-size: 1.1rem;
    vertical-align: middle;
}

/* Botão Glowing Pill centralizado */
.hero-cta-new {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-glowing-pill {
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    color: #004b55;
    padding: 12px 35px 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 30px 8px rgba(100, 240, 255, 0.4);
    gap: 12px;
}

.btn-glowing-pill:hover {
    box-shadow: 0 0 45px 15px rgba(100, 240, 255, 0.5);
    color: #004b55;
}

.btn-icon {
    width: 38px;
    height: 38px;
}

.btn-text-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-text-lg {
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.5px;
}

.btn-text-sm {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 2px;
}



/* Proposta de Valor - Safra Style */
.value-prop-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.section-header-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.value-split-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.value-image-side {
    flex: 1;
}

.value-main-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.value-list-side {
    flex: 1;
}

.value-intro {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

/* Vertical Steps Line */
.vertical-steps {
    position: relative;
    padding-left: 50px;
}

.vertical-steps::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 15px;
    bottom: 15px;
    width: 2px;
    background-color: var(--primary-dark);
}

.step-item {
    position: relative;
    margin-bottom: 45px;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-dot {
    position: absolute;
    left: -50px;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--primary-dark);
    border-radius: 50%;
    z-index: 2;
}

.step-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
}


/* Features - FOCO Style Grid */
.features-section {
    padding: 100px 0;
    background: #f8fafc;
}

.section-badge-wrapper {
    text-align: center;
    margin-bottom: 15px;
}

.section-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    background: #f0f7ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon-img {
    width: 28px;
    height: 28px;
    opacity: 0.8;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* Plans Section */
/* Plans Section */
.plans-section {
    padding: 100px 0;
    /* Match Hero Gradient */
    background: radial-gradient(circle at top, #002c33 0%, #004b55 100%);
    color: #FFFFFF;
}

.plans-section .section-title {
    color: #FFFFFF;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
    align-items: stretch;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    color: #FFFFFF;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
}

/* Highlight for Plus Plan */
.plan-card.highlight {
    background: linear-gradient(135deg, #004d59 0%, #002c33 100%);
    border: 1px solid var(--secondary);
    box-shadow: 0 0 30px rgba(254, 98, 24, 0.2);
    transform: scale(1.05);
    z-index: 2;
}

.plan-card.highlight:hover {
    transform: scale(1.08);
}

.plan-card.highlight h3,
.plan-card.highlight .plan-desc {
    color: #FFFFFF;
}

.plan-card.highlight .plan-features li {
    color: rgba(255, 255, 255, 0.9);
}

.plan-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.plan-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    min-height: 48px;
    /* Alignment */
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.plan-features li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.plan-features li::before {
    content: '●';
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 2px;
}

/* FAQ Section */
/* FAQ Accordion Style */
.faq-section {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #f1f5f9;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #FFFFFF;
}

.faq-item.active .faq-answer {
    padding: 0 30px 24px 30px;
    /* Max-height set via JS for smooth animation */
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}


/* Final Banner Section - Premium Style (With Image Background) */
.final-banner-section {
    padding: 120px 0;
    /* Aumentado padding para dar mais ar à imagem de fundo */
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../assets/images/BG.png') no-repeat center center;
    background-size: cover;
    width: 100%;
    overflow: hidden;
    color: #FFFFFF;
    text-align: center;
    position: relative;
}

.banner-final-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
}

.banner-final-badge {
    color: #FFFFFF;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 1;
}

.banner-final-title {
    font-size: 3rem;
    font-weight: 850;
    line-height: 1.3;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #f0ffff;
    /* Tom levemente ciano para bater com a imagem */
}

.banner-underline {
    position: relative;
    display: inline-block;
}

.banner-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--secondary);
}

.banner-final-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 40px;
}

.banner-final-cta {
    margin-top: 10px;
}

.banner-layer-top {
    height: auto;
    max-width: 400px;
    margin-bottom: 5px;
}

.banner-layer-title {
    height: auto;
    max-width: 650px;
    margin-bottom: 5px;
}

.banner-layer-desc {
    height: auto;
    max-width: 500px;
    margin-bottom: 15px;
}

.banner-layer-btn-link {
    transition: transform 0.3s var(--transition);
    display: block;
}

.banner-layer-btn-link:hover {
    transform: scale(1.05);
}

.banner-layer-btn {
    height: auto;
    max-width: 320px;
}

@media (max-width: 768px) {
    .new-banner-layout {
        padding: 50px 0;
        min-height: 350px;
    }

    .banner-layer-top {
        max-width: 80%;
    }

    .banner-layer-title {
        max-width: 95%;
    }

    .banner-layer-desc {
        max-width: 85%;
    }

    .banner-layer-btn {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .final-banner-section {
        padding: 40px 0;
    }
}


/* Footer Custom Layout */
.footer {
    background: var(--primary-dark);
    color: var(--text-on-dark);
    padding: 80px 0 60px;
}

.footer-content-custom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    text-align: center;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col.left {
    align-items: flex-start;
    text-align: left;
}

.footer-col.center {
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 30px;
}

.footer-col.right {
    align-items: flex-end;
    text-align: right;
}

.footer h3 {
    font-size: 1rem;
    /* Smaller "Fale com a gente" */
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-link {
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.footer-privacy-link {
    margin-top: 30px;
}

.logo-text-footer {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--background);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.footer-btn {
    margin-top: 20px;
    background: white;
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.copyright-block p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}


/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Bottom Legal */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
}

.legal-small {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    line-height: 1.6;
}

/* Responsiveness */
@media (max-width: 900px) {
    .h1 {
        font-size: 2.5rem;
    }

    .footer-content-custom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .footer-col.left,
    .footer-col.center,
    .footer-col.right {
        align-items: center;
        text-align: center;
        border: none;
        padding: 0;
    }

    .footer-privacy-link {
        margin-top: 15px;
    }

    .hero-content,
    .value-split-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-bullets,
    .vertical-steps {
        display: inline-block;
        text-align: left;
        padding-left: 0;
    }

    .vertical-steps::before,
    .step-dot {
        display: none;
    }

    .step-item {
        margin-bottom: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    /* Hide header button on mobile if needed, or keep */

    .hero-title {
        font-size: 2.2rem;
    }
}