:root {
    --primary: #CF063F;
    --primary-dark: #A50532;
    --primary-light: #FFEAEE;
    --text-dark: #1F1719;
    --text-gray: #5D4547;
    --text-pink: #CF063F;
    --bg-light: #FAFAFA;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Maven Pro', sans-serif;
}

body {
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.5;
    position: relative;
    overflow-x: hidden; 
}

/* 
   TIPOGRAFIA & GLOBAIS
    */
h1 { font-size: 56px; font-weight: 700; line-height: 1.1; margin-bottom: 20px; color: var(--white); }
h2 { font-size: 36px; font-weight: 700; line-height: 1.2; margin-bottom: 16px; color: var(--text-dark); }
h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; color: var(--text-dark); }
h4 { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
p { font-size: 16px; color: var(--text-gray); margin-bottom: 16px; }

.text-pink { color: var(--text-pink); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-padding { padding: 100px 0; }

/* 
   BADGES (ETIQUETAS)
    */
.badge {
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid var(--primary-light);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
    background-color: var(--white);
}
.badge-white {
    color: var(--primary);
    background-color: var(--white);
    border: none;
}
.badge-outline {
    background-color: #FFF3F6; 
    border: 1px solid var(--primary); 
    color: var(--primary); 
    padding: 6px 18px; 
    border-radius: 30px; 
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px; 
    margin-bottom: 16px;
}
.badge-outline .dot {
    font-size: 18px; 
    line-height: 0; 
    margin-top: -2px; 
}

/* 
   BOTÕES
    */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
    cursor: pointer;
    border: none;
    text-align: center;
}
.btn-primary { background-color: var(--primary); color: var(--white); }
.btn-primary:hover { background-color: var(--primary-dark); }
.btn-white { background-color: var(--white); color: var(--primary); }
.btn-outline-white { background-color: transparent; border: 1px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-block { width: 100%; }

/* 
   HERO SECTION & NAVBAR
    */
.hero-section {
    background-color: var(--primary);
    background-image: url('assets/banner-autex.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 30px;
    padding-bottom: 130px; 
    position: relative;
}
.navbar-pill {
    background: var(--white);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 8px 8px 30px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 80px; 
    position: relative;
}
.navbar-pill .logo { display: flex; align-items: center; }
.navbar-pill .logo img { height: 26px; width: auto; display: block; }
.nav-links a {
    text-decoration: none; color: var(--text-dark);
    font-weight: 600; font-size: 14px; margin: 0 16px; transition: 0.3s;
}
.nav-links a:hover { color: var(--primary); }
.navbar-pill .btn {
    padding: 12px 28px;
    font-size: 14px;
}
.hero-content { 
    display: flex; 
    align-items: center; 
    gap: 0; 
}
.hero-text { flex: 1; color: var(--white); max-width: 55%; }
.hero-text p { color: rgba(255,255,255,0.9); font-size: 18px; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 16px; }
.hero-image-wrapper { 
    flex: 1; 
    position: relative; 
    display: flex; 
    justify-content: flex-end; 
}
.hero-phone { 
    width: 130%; 
    max-width: 640px; 
    margin-bottom: -290px; 
    position: relative;
    z-index: 10;
    transform: translate(45px, 15px); 
}

/* 
   SOLUÇÃO SECTION
    */
.solucao-section { 
    padding-top: 150px; 
    padding-bottom: 100px;
}
.solucao-container { 
    display: flex; 
    align-items: center; 
    gap: 80px; 
}
.solucao-images { 
    flex: 1; 
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 550px; 
}
.solucao-bg-shape {
    position: absolute;
    width: 85%;
    height: 80%;
    background-color: var(--primary);
    border-radius: 40px;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.img-main-phone {
    position: relative;
    z-index: 3; 
    width: 100%;
    max-width: 380px;
}
.img-floating {
    position: absolute;
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    border: 6px solid var(--white);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.img-top-left {
    top: 15%;
    left: -10px;
    z-index: 2; 
}
.img-bottom-right {
    bottom: 5%;
    right: 0;
    z-index: 4; 
}
.solucao-text { 
    flex: 1; 
}
.solucao-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
}
.solucao-text h4 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 16px;
}
@media (max-width: 992px) {
    .solucao-images { min-height: 450px; }
    .img-main-phone { max-width: 280px; }
    .img-floating { width: 120px; height: 120px; border-width: 4px; }
}

/* 
   DIFERENCIAL SECTION
    */
.diferencial-section .subtitle-desc { max-width: 700px; margin: 0 auto 50px auto; }
.comparativo-card {
    background: var(--white); border: 1px solid var(--primary-light);
    border-radius: 24px; display: flex; padding: 50px;
    box-shadow: 0 20px 40px rgba(207, 6, 63, 0.05); text-align: left;
}
.comp-coluna { flex: 1; }
.comp-divisor { width: 1px; background: #EEE; margin: 0 40px; }
.comp-coluna h3 { border-bottom: 2px solid #F0F0F0; padding-bottom: 16px; margin-bottom: 24px; }
.comp-coluna ul { list-style: none; }
.comp-coluna li { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 12px; color: var(--text-gray); }
.comp-coluna li strong { color: var(--text-dark); }
.icon-x { color: var(--primary); font-size: 18px; font-weight: bold; }
.icon-check { color: #27AE60; font-size: 18px; font-weight: bold; }

/* 
   BENEFÍCIOS SECTION
    */
.beneficios-section { background-color: var(--primary); }
.beneficios-section .subtitle-desc { max-width: 600px; margin: 0 auto 60px auto; color: rgba(255,255,255,0.8); }
.beneficios-section h2 { color: var(--white); }
.beneficios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.beneficios-center { display: flex; justify-content: center; }
.beneficios-center .beneficio-card { width: calc(33.333% - 20px); }
.beneficio-card { 
    background: var(--white); 
    padding: 35px 30px; 
    border-radius: 16px; 
    text-align: left; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.beneficio-card h3 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 12px;
}
.beneficio-card p {
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}
.icon-box {
    width: 48px; 
    height: 48px; 
    background: var(--primary); 
    border-radius: 12px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 24px;
}
.icon-box img { 
    width: 26px; 
    filter: brightness(0) invert(1); 
}
@media (max-width: 992px) {
    .beneficios-grid { grid-template-columns: 1fr; }
    .beneficios-center .beneficio-card { width: 100%; }
}

/* 
   GLASS MORPHISM EFFECT
    */
.glass-effect {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
}

.glass-effect-dark {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.glass-effect-strong {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
}

.glass-effect-primary {
    background: rgba(207, 6, 63, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(207, 6, 63, 0.25);
    border-radius: 20px;
}

/* 
   COMO FUNCIONA SECTION
    */
.como-funciona-section { background-color: var(--white); }
.como-funciona-header { margin-bottom: 60px; }
.cf-row {
    display: flex;
    align-items: center;
    gap: 120px; 
}
.cf-row-reverse {
    flex-direction: row-reverse;
}
.cf-spacer {
    height: 100px;
}
.cf-steps-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 480px; 
}
.cf-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.cf-step-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 24px 30px;
    width: 85%; 
    z-index: 2;
    overflow: hidden; 
}
.cf-left { align-self: flex-start; }
.cf-right { align-self: flex-end; }
.cf-step-content { position: relative; z-index: 2; }
.cf-step-title { color: var(--primary); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.cf-step-card p { color: var(--text-gray); font-size: 15px; margin-bottom: 0; line-height: 1.5; }
.cf-step-number {
    position: absolute;
    right: 15px;
    top: -10px;
    font-size: 100px;
    font-weight: 700;
    color: #F8E8EB; 
    line-height: 1;
    z-index: 0;
    letter-spacing: -2px;
}
.cf-arrow {
    display: flex;
    align-items: center;
    width: 100px;
    margin: 24px 0 24px 15%; 
    color: var(--primary);
}
.cf-dashed-line {
    flex: 1;
    border-bottom: 2px dashed var(--primary);
}
.cf-arrow-head {
    margin-left: 6px;
    font-size: 18px;
}
.cf-box-gray {
    position: relative;
    width: 100%;
    max-width: 480px; 
}
.cf-box-gray img {
    width: 100%;
    height: auto;
    border: 1px solid var(--primary);
    border-radius: 24px;
    display: block;
}
.cf-box-red {
    position: relative;
    background-color: var(--primary);
    border-radius: 32px;
    width: 100%;
    max-width: 380px !important; 
    height: 480px; 
    margin: 0 auto;
}
.cf-phone-bleed {
    position: absolute;
    width: 260px !important; 
    max-width: 260px !important;
    height: auto;
    bottom: 0px; 
    left: 50%;
    transform: translateX(-50%); 
    z-index: 10;
}
.cf-tag {
    position: absolute;
    background: #FFE9EF33;
    border: 1px solid var(--primary);
    border-radius: 50px;
    padding: 6px 16px 6px 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.cf-tag span {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
}
.cf-tag-icon {
    width: 26px;
    height: 26px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.cf-tag-top-left { top: 25%; left: -40px; }
.cf-tag-bottom-right { bottom: 25%; right: -30px; }

@media (max-width: 992px) {
    .cf-row, .cf-row-reverse { flex-direction: column; gap: 60px; }
    .cf-spacer { height: 60px; }
    .cf-steps-col { max-width: 100%; }
    .cf-step-card { width: 100%; }
    .cf-arrow { margin: 24px auto; }
    .cf-tag-top-left { left: -10px; }
    .cf-tag-bottom-right { right: -10px; }
}

/* 
   CONTATO SECTION
    */
.contato-container { display: flex; gap: 60px; align-items: center; }
.contato-info { flex: 1; }
.btn-social {
    display: flex; align-items: center; padding: 16px; border-radius: 16px;
    text-decoration: none; margin-bottom: 16px; transition: 0.3s;
}
.btn-whatsapp { border: 1px solid #E2F5EA; background: #F8FDF9; }
.btn-whatsapp .social-icon { background: #25D366; }
.btn-instagram { border: 1px solid #FCE4EC; background: #FFFAFC; }
.btn-instagram .social-icon { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon {
    width: 48px; height: 48px; border-radius: 12px; display: flex;
    align-items: center; justify-content: center; margin-right: 16px;
}
.social-icon img { width: 24px; }
.btn-whatsapp .social-icon img { width: 24px;  filter: brightness(0) invert(1);}
.social-text strong { display: block; color: var(--text-dark); font-size: 16px; }
.social-text span { color: var(--text-gray); font-size: 13px; }
.contato-form {
    flex: 1; background: var(--white); padding: 40px; border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08); border: 1px solid #F0F0F0;
}
.form-row { display: flex; gap: 16px; margin-bottom: 16px; }
.contato-form input, .contato-form textarea {
    width: 100%; padding: 16px; border: 1px solid #EAEAEA; border-radius: 12px;
    background: #FCFCFC; font-size: 15px; outline: none; transition: 0.3s;
}
.contato-form textarea { margin-bottom: 24px; resize: vertical; }
.contato-form input:focus, .contato-form textarea:focus { border-color: var(--primary); background: var(--white); }

/* 
   FOOTER
    */
footer { background: var(--primary); color: var(--white); padding: 60px 0 30px; font-size: 14px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.footer-top p { 
    color: var(--white); 
    margin-bottom: 0; 
    font-size: 16px;
    font-weight: 500;
}
.footer-logo { height: 32px; filter: brightness(0) invert(1); }
.footer-ig img { width: 24px; filter: brightness(0) invert(1); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.2); margin-bottom: 40px; }
.footer-bottom { display: flex; justify-content: space-between; }
.footer-col h4 { color: var(--white); margin-bottom: 16px; font-size: 16px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.8); text-decoration: none; margin-bottom: 8px; }
.footer-col a:hover { color: var(--white); }
.copyright { text-align: right; }

/* 
   MENU MOBILE & FIXOS
    */
.menu-toggle {
    background: transparent;
    border: 0;
    display: none; 
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.floating-whatsapp-fixed {
    position: fixed; bottom: 40px; right: 40px; background: #25D366;
    width: 60px; height: 60px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999; transition: transform 0.3s ease;
}
.floating-whatsapp-fixed:hover { transform: scale(1.1); }
.floating-whatsapp-fixed img { width: 32px; filter: brightness(0) invert(1); }

/* 
   RESPONSIVO GERAL
    */
@media (max-width: 992px) {
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    .section-padding { padding: 60px 0; }
    .container { padding: 0 20px; }

    .navbar-pill {
        flex-direction: row; 
        padding: 10px 16px;
        border-radius: 30px;
        margin-bottom: 40px;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 4px;
        padding: 12px;
        background: var(--white);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        z-index: 20;
    }
    .nav-links.is-open { display: flex; }
    .nav-links a {
        display: block;
        margin: 0;
        padding: 12px 14px;
        border-radius: 12px;
    }
    .nav-links a:hover { background: var(--primary-light); }
    .menu-toggle { display: block; } 
    .navbar-pill .btn { padding: 10px 14px; font-size: 11px; } 
    .navbar-pill .logo img { height: 22px; }

    .hero-section { padding-bottom: 80px; }
    .hero-content { flex-direction: column; gap: 40px; }
    .hero-text { max-width: 100%; text-align: left; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .hero-buttons .btn { width: 100%; }
    .hero-image-wrapper { justify-content: center; } 
    .hero-phone { 
        width: 100%; 
        max-width: 340px; 
        margin-bottom: -200px; 
        transform: translateY(20px); 
    }

    .solucao-section { padding-top: 130px; padding-bottom: 60px; }
    .solucao-container { flex-direction: column; gap: 40px; }
    .solucao-text { order: -1; }
    .solucao-images { min-height: 380px; width: 100%; }
    .solucao-bg-shape { width: 100%; height: 350px; border-radius: 32px; }
    .img-main-phone { max-width: 440px; } 
    .img-floating { width: 120px; height: 120px; border-width: 4px; border-radius: 16px; }
    .img-top-left { top: 0; left: 0; } 
    .img-bottom-right { bottom: 0; right: 0; }


    .diferencial-section .container { text-align: left; } 
    .diferencial-section .subtitle-desc { margin-left: 0; }
    
    .comparativo-card { 
        flex-direction: column; 
        padding: 0;
        border: none; 
        box-shadow: none; 
    }
    .comp-divisor { display: none; } 
    
    .comp-coluna.autex h3 { margin-top: 40px; } 
    
    .comp-coluna li { 
        border-bottom: 1px solid #EAEAEA; 
        padding-bottom: 16px; 
        margin-bottom: 16px; 
        align-items: center;
    }
    .comp-coluna li:last-child { 
        border-bottom: none;
        margin-bottom: 0; 
        padding-bottom: 0;
    }

    .beneficios-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
    .beneficios-center .beneficio-card { width: 100%; }
    .beneficio-card { padding: 24px; }

    .cf-row, .cf-row-reverse { flex-direction: column; gap: 24px; }
    .cf-spacer { height: 40px; }
    .cf-image-col { order: -1; width: 100%; }
    .cf-steps-col { width: 100%; max-width: 100%; }
    .cf-step-card { width: 100%; padding: 24px; margin-bottom: 16px; }
    .cf-arrow { display: none; } 
    .cf-box-gray { max-width: 100%; }
    .cf-tag-top-left { top: -10px; left: 10px; }
    .cf-tag-bottom-right { bottom: -10px; right: 10px; }
    .cf-box-red { max-width: 100% !important; height: 320px; }
    .cf-phone-bleed { width: 180px !important; max-width: 180px !important; bottom: 0; }

    .contato-container { flex-direction: column; gap: 40px; align-items: stretch; }
    .form-row { flex-direction: column; gap: 16px; margin-bottom: 16px; }
    .contato-form { padding: 24px; }

    .footer-top { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 32px; }
    .copyright { text-align: left; }
    
    .floating-whatsapp-fixed { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}