@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@400;500;600;700&display=swap');

/* [1] Pages */
@import url('pages/sobre.css');

:root {
    --primary: #2563EB;
    --primary-dark: #1e40af;
    --secondary: #0F172A;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --text-main: #111827;
    --text-muted: #4B5563;
    --border-light: #E5E7EB;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    --transition: all 0.3s ease-out;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* New Search & Filter Tokens */
    --filter-bg: #F1F5F9;
    --filter-active: #2563EB;
    --filter-text: #475569;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section { padding: 100px 0; }

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Default non-scrolled header color (light hero backgrounds) */
header:not(.scrolled) .nav-links a,
header:not(.scrolled) .mobile-menu-btn {
    color: var(--secondary);
    transition: var(--transition);
}

header:not(.scrolled) .logo-img {
    filter: none;
}

/* Optional white header variant for dark hero pages */
header.header-transparent-white:not(.scrolled) .nav-links a,
header.header-transparent-white:not(.scrolled) .mobile-menu-btn {
    color: var(--white);
}

header.header-transparent-white:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1);
}

/* Scrolled state: always dark text on white background */
header.scrolled .nav-links a, 
header.scrolled .mobile-menu-btn {
    color: var(--secondary);
}

header.scrolled .logo-img {
    filter: none;
}

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

.logo { display: flex; align-items: center; }

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links::before {
    content: '';
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: inherit;
    cursor: pointer;
    z-index: 1001;
}

.mobile-only {
    display: none;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease-out;
}

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

.nav-links a:hover {
    color: var(--primary);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.35);
}

/* Badge Style for Buttons */
.btn-badge-container {
    position: relative;
    display: inline-block;
}

.btn-badge {
    position: absolute;
    top: -12px;
    right: -10px;
    background-color: #25D366; /* WhatsApp Green for pop */
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
    animation: badgeFloat 2s ease-in-out infinite;
    white-space: nowrap;
}

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

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    border: none;
}

.btn-secondary:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: #21bd5c;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.5);
    color: white;
}

.btn-whatsapp i {
    font-size: 1.4rem;
    line-height: 1;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

/* Hero variation: lighter institutional look */
.hero.hero-variant-light {
    background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
}

/* Background Geometric Patterns (Animated) */
.hero::before, .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(1px);
}

.hero::before {
    width: 620px;
    height: 620px;
    top: -260px;
    right: -140px;
    border: 56px solid rgba(148, 163, 184, 0.11);
    background: transparent;
    filter: none;
    animation: floatCircle 18s linear infinite;
}

.hero.hero-variant-light::before {
    border-color: rgba(148, 163, 184, 0.12);
}

.hero::after {
    width: 420px;
    height: 420px;
    left: -120px;
    bottom: -140px;
    border: 44px solid rgba(37, 99, 235, 0.09);
    background: transparent;
    filter: none;
    animation: floatCircleReverse 22s linear infinite;
}

.hero.hero-variant-light::after {
    border-color: rgba(37, 99, 235, 0.12);
}

@media (max-width: 1024px) {
    .hero,
    .hero.hero-variant-light {
        background-position: 62% center;
    }

    .hero::before {
        width: 500px;
        height: 500px;
        top: -220px;
        right: -170px;
    }

    .hero::after {
        width: 320px;
        height: 320px;
        left: -120px;
        bottom: -120px;
    }
}

@keyframes floatCircle {
    0% { transform: rotate(0deg) translate(0, 0); }
    50% { transform: rotate(180deg) translate(30px, 30px); }
    100% { transform: rotate(360deg) translate(0, 0); }
}

@keyframes floatCircleReverse {
    0% { transform: rotate(0deg) translate(0, 0); }
    50% { transform: rotate(-180deg) translate(-20px, 40px); }
    100% { transform: rotate(-360deg) translate(0, 0); }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--secondary);
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem !important;
    max-width: 560px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Trust Badge */
.trust-badge {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.trust-badge .stars {
    display: flex;
    gap: 2px;
    color: #f59e0b; /* Amber */
    font-size: 1.2rem;
}

.trust-badge span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.trust-badge strong {
    color: var(--secondary);
}

.hero-image {
    position: relative;
    z-index: 2;
}

/* Floating UI Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    z-index: 3;
    animation: floatAnimation 4s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 40px;
    left: -40px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 50px;
    right: -30px;
    animation-delay: 2s;
}

.floating-card .card-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.floating-card .card-text {
    display: flex;
    flex-direction: column;
}

.floating-card .card-text strong {
    font-size: 1rem;
    color: var(--secondary);
    line-height: 1.2;
}

.floating-card .card-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

@media (max-width: 1024px) {
    .floating-card.card-1 { left: -10px; }
    .floating-card.card-2 { right: -10px; }
}

@media (max-width: 768px) {
    .floating-card { display: none; } /* Hide on mobile to avoid clutter */
    .trust-badge { justify-content: center; }
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: translateY(-5px);
}

/* About Overview Section (Contajá Style) */
.about-overview {
    padding: 120px 0;
    position: relative;
    background-image: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(15, 23, 42, 0) 100%), url('../images/office-bg.jpg');
    background-size: cover;
    background-position: center right;
    background-attachment: fixed;
    color: var(--white);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.about-overview-content {
    max-width: 600px;
}

.about-overview-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.about-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.about-icon {
    font-size: 2rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-text strong {
    font-size: 1.15rem;
    color: var(--white);
}

.about-text span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .about-overview {
        background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.9) 100%), url('../images/office-bg.jpg');
        background-attachment: scroll;
    }
}

/* Advantages Section */
.advantages-section {
    padding: 100px 0;
    background-color: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
}

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

.advantage-icon {
    width: 80px;
    height: 80px;
    background-color: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.advantage-icon i {
    font-size: 2.25rem;
    color: var(--primary);
}

.advantage-item:hover .advantage-icon {
    transform: translateY(-5px) scale(1.05);
    background-color: var(--primary);
}

.advantage-item:hover .advantage-icon i {
    color: var(--white);
}

.advantage-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.advantage-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Budget Banner */
.budget-banner {
    background-color: var(--primary);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.budget-banner h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.budget-banner p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.banner-ctas {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* Page Hero (Inner Pages) */
.page-hero {
    padding-top: 200px;
    padding-bottom: 140px;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), 
                url('../images/hero-about-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content h1 {
    color: var(--white);
    font-size: 3.25rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}


/* Common Section Styles */
.section-header {
    margin-bottom: 4rem;
    max-width: 700px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Benefits / Features */
.beneficios {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.beneficios::before,
.beneficios::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.beneficios::before {
    width: 520px;
    height: 520px;
    top: -240px;
    right: -120px;
    border: 52px solid rgba(59, 130, 246, 0.2);
    animation: floatCircle 22s linear infinite;
}

.beneficios::after {
    width: 340px;
    height: 340px;
    bottom: -150px;
    left: -110px;
    border: 36px solid rgba(37, 99, 235, 0.2);
    animation: floatCircleReverse 28s linear infinite;
}

.beneficios .container {
    position: relative;
    z-index: 1;
}

.beneficios .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.beneficios .section-header h2 {
    color: var(--white);
}

.beneficios .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.beneficios-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.beneficio-card {
    flex: 0 1 360px;
    padding: 40px;
    background: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.beneficio-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: #1e40af; /* Slightly darker shade of primary */
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.beneficio-card i {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.beneficio-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.beneficio-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.service-card > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-highlights li i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Split Layout Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.split-section.reverse {
    direction: rtl;
}
.split-section.reverse .split-content {
    direction: ltr;
}

.split-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.split-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.split-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Sectors Section */
.sectors-section {
    padding: 120px 0;
    background-color: var(--bg-light); /* Differentiated from dark breaker and white header */
    border-bottom: 1px solid var(--border-light);
}

.sectors-main-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: flex-start;
}

.sectors-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.sector-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 32px;
    background-color: #f8faff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.sector-card:hover {
    background-color: var(--white);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.sector-card.full-width {
    grid-column: span 2;
    align-items: center;
}

.sector-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sector-icon i {
    font-size: 1.5rem;
}

.sector-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.sector-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.sectors-image {
    position: relative;
    height: 100%;
    background-color: #f0f4ff;
    border-radius: 24px;
    padding: 20px; /* Cria o efeito de moldura */
    display: flex;
    align-items: center;
}

.sectors-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.image-accent-box {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 12px;
    opacity: 0.1;
    z-index: 1;
}

@media (max-width: 1024px) {
    .sectors-main-grid {
        grid-template-columns: 1fr;
    }
    
    .sectors-image {
        display: none;
    }
}

@media (max-width: 640px) {
    .sectors-cards-grid {
        grid-template-columns: 1fr;
    }
    .sector-card.full-width {
        grid-column: span 1;
    }
}

/* Plans Section */
.planos {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}

/* Base grid pattern moved to main background for better stacking with pseudo-elements */
.planos::before, .planos::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(2px);
}

/* Floating arc 1 (Top Right) */
.planos::before {
    width: 500px;
    height: 500px;
    border: 50px solid rgba(37, 99, 235, 0.08);
    top: -150px;
    right: -100px;
    animation: floatCircle 18s linear infinite;
    background: transparent; /* Ensure it's just the border */
}

/* Floating glow arc 2 (Bottom Left) */
.planos::after {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    bottom: -80px;
    left: -50px;
    animation: floatCircleReverse 22s linear infinite;
}

/* Overlaying the grid pattern on the section background */
.planos-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--border-light) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.plan-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    min-height: 54px;
}

.plan-features {
    margin: 2rem 0;
    text-align: left;
    color: var(--text-muted);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-features li i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1.25rem;
    color: var(--text-muted);
}

.plan-features li i[style*="var(--primary)"] {
    color: var(--primary) !important;
}

.plano-card .btn {
    margin-top: auto;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.plano-card {
    padding: 60px 40px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plano-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.plano-card i.plan-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.plano-card.featured {
    border: 2px solid var(--primary);
    background-color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.plano-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
    box-shadow: 0 40px 80px rgba(37, 99, 235, 0.25);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, var(--primary), #1e40af);
    color: white;
    padding: 6px 20px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    margin: 1rem 0 1.25rem;
    padding: 0.25rem 0;
}

.price-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    line-height: 1;
}

.price-currency {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-muted);
    align-self: flex-start;
    margin-top: 0.45rem;
}

.price-amount {
    font-family: var(--font-primary);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.03em;
}

.price-period {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 0.35rem;
    letter-spacing: 0.01em;
}

.price-block--consult {
    min-height: 88px;
}

.price-consult {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.35rem;
    font-family: var(--font-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.03) 100%);
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: var(--radius-full);
}

.price-block--plain {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.02em;
    text-align: center;
}

/* Blog Section */
.blog-section {
    padding: 120px 0;
    background-color: var(--white);
}

.blog-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 2rem;
}

.blog-header-text h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.blog-header-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

.blog-section__carousel-controls {
    display: flex;
    gap: 1rem;
}

.blog-carousel__btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.blog-carousel__btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.blog-carousel-wrapper {
    overflow: hidden;
    margin-bottom: 3rem;
    padding: 10px 0;
}

.blog-grid {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.blog-bullets-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 3rem;
}

.blog-bullet {
    width: 12px;
    height: 12px;
    background: #e2e8f0;
    border-radius: 99px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.blog-bullet.active {
    width: 40px;
    background: var(--primary);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.blog-bullet:hover {
    background: #cbd5e1;
}

.blog-card {
    flex: 0 0 calc(33.333% - 1.35rem);
    min-width: calc(33.333% - 1.35rem);
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    border-color: var(--primary);
}

.blog-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card-image-link {
    display: block;
    height: 100%;
    text-decoration: none;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 99px;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.blog-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-content h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--secondary);
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.blog-card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-time {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 10px;
}

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

.blog-all-btn {
    background-color: var(--primary);
    border: none;
    color: white;
    padding: 16px 40px;
    font-weight: 700;
    border-radius: 99px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.blog-all-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
    color: white;
}

@media (max-width: 1024px) {
    .blog-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .blog-card {
        flex: 0 0 100%;
    }
    .blog-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .blog-section__carousel-controls {
        display: none;
    }
    .blog-header-text h2 {
        font-size: 2rem;
    }
}

/* Marquee Section */
.marquee-wrapper {
    background-color: var(--primary);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding: 0 40px;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--white);
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 40px;
}

.marquee-content span::after {
    content: '•';
    color: var(--white);
    opacity: 0.5;
}

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


/* Feed Breaker Section */
.feed-breaker {
    padding: 160px 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feed-breaker .breaker-box h2 {
    font-size: 4rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.text-transition-container {
    height: 1.6em;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-transition-item {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
}

.text-transition-item.active {
    opacity: 1;
    transform: translateY(0);
}

.text-transition-item.exit {
    opacity: 0;
    transform: translateY(-20px);
}

.feed-breaker::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: white;
    top: -100px;
    left: -100px;
    opacity: 0.1;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: white;
    bottom: -50px;
    right: -50px;
    opacity: 0.1;
}

.breaker-box {
    position: relative;
    z-index: 2;
}

.feed-breaker h2 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feed-breaker p {
    font-size: 1.75rem;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pulse-icon {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
    animation: pulseIconWhite 2s infinite;
}

@keyframes pulseIconWhite {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.feed-breaker .blog-all-btn {
    background-color: #25D366;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feed-breaker .blog-all-btn i {
    font-size: 1.4rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.feed-breaker .blog-all-btn:hover {
    background-color: #1fba58;
    color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.5);
}

.feed-breaker .blog-all-btn:hover i {
    transform: scale(1.2) rotate(-10deg);
}

@media (max-width: 768px) {
    .feed-breaker { padding: 80px 0; }
    .feed-breaker h2 { font-size: 1.8rem; line-height: 1.15; }
    .feed-breaker p { font-size: 1.1rem; }

    /* Avoid truncation in rotating line on small screens */
    .text-transition-container {
        min-height: 3.4em;
        height: auto;
    }

    .text-transition-item {
        white-space: normal;
        text-align: center;
        width: 100%;
        justify-content: center;
        line-height: 1.35;
        padding: 0 10px;
    }
}

/* CTA Final */

.cta-final {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e40af 100%);
    color: white;
    text-align: center;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-final::before, .cta-final::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(1px);
}

.cta-final::before {
    width: 500px;
    height: 500px;
    border: 50px solid rgba(255, 255, 255, 0.03);
    top: -150px;
    left: -100px;
    animation: floatCircle 20s linear infinite;
}

.cta-final::after {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    bottom: -80px;
    right: -50px;
    animation: floatCircleReverse 25s linear infinite;
}

.cta-final .container {
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-final p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final .btn-primary {
    background-color: var(--white);
    color: var(--secondary);
    padding: 18px 48px;
    font-weight: 700;
    border: none;
}

.cta-final .btn-primary:hover {
    background-color: #f8fafc;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-values {
    padding: 100px 0;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background-color: var(--primary);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
    padding-left: 5px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.whatsapp-fixed {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 68px;
    height: 68px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.15rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
    transform-origin: center;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
    animation-play-state: paused;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    }
    50% {
        transform: scale(1.07);
        box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    }
}

/* WhatsApp Lead Capture Modal */
.wa-lead-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(3px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.wa-lead-overlay.active {
    display: flex;
}

.wa-lead-modal {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
    padding: 28px;
}

.wa-lead-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.wa-lead-header h3 {
    font-size: 1.35rem;
    margin: 0;
    color: var(--secondary);
}

.wa-lead-close {
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 1.4rem;
    cursor: pointer;
}

.wa-lead-subtitle {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 0.96rem;
}

.wa-lead-form {
    display: grid;
    gap: 12px;
}

.wa-lead-form input,
.wa-lead-form select {
    width: 100%;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.95rem;
    outline: none;
}

.wa-lead-form input:focus,
.wa-lead-form select:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.wa-lead-submit {
    margin-top: 6px;
    width: 100%;
}

.wa-lead-note {
    margin-top: 10px;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Reveal Helper */
.reveal {
    opacity: 0;
    transform: translateY(20px);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        padding: 80px 40px;
    }

    .nav-links::before {
        display: block;
        width: 168px;
        height: 42px;
        margin: 0 auto 1.25rem;
        background: url('../images/logo-back-office.png') center / contain no-repeat;
        flex-shrink: 0;
    }

    .nav-links.active {
        right: 0;
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease forwards;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered entry for menu items */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--secondary);
    }

    .nav-links .mobile-only .btn {
        width: min(320px, 100%);
        margin: 0.4rem auto 0;
        padding: 13px 20px;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.01em;
    }

    .nav-links .mobile-only .btn.btn-primary {
        color: #ffffff;
        background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
        box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
    }

    .nav-links .mobile-only .btn.btn-primary:hover {
        color: #ffffff;
        transform: translateY(-1px);
        box-shadow: 0 14px 28px rgba(37, 99, 235, 0.34);
    }

    .mobile-nav-footer {
        margin-top: 3rem;
        text-align: center;
        border-top: 1px solid var(--border-light);
        padding-top: 2rem;
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease 0.6s forwards;
    }

    .nav-links.active .mobile-nav-footer {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-nav-footer p {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--text-muted);
        margin-bottom: 1rem;
    }

    .mobile-socials {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }

    .mobile-nav-footer-li {
        list-style: none;
        width: 100%;
    }

    .mobile-socials a {
        font-size: 1.5rem;
        color: var(--primary);
    }

    .mobile-menu-btn {
        display: block;
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(15, 23, 42, 0.06);
        backdrop-filter: blur(6px);
        color: inherit;
        text-shadow: none;
    }

    header.header-transparent-white:not(.scrolled) .mobile-menu-btn {
        background: rgba(255, 255, 255, 0.14);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
    }

    header.scrolled .mobile-menu-btn {
        background: rgba(15, 23, 42, 0.06);
        text-shadow: none;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .hero-grid, .split-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-content { padding: 0; border-radius: 0; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
    .footer-col:first-child { align-items: center; }
    .footer-social { justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .page-hero-content h1 { font-size: 1.8rem; }
    .exit-modal-container { flex-direction: column; max-width: 500px; }
    .exit-modal-left { min-height: 200px; }
    .exit-modal-right { padding: 30px 25px; }
    .exit-modal-form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .hero-content { padding: 0; border-radius: 0; }
    .hero-content h1 {
        font-size: 2.15rem;
        line-height: 1.08;
        margin-bottom: 1.1rem;
    }
    .hero-subtitle {
        font-size: 1.02rem;
        line-height: 1.5;
        margin-bottom: 1.45rem !important;
    }
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        margin-bottom: 0.8rem;
    }
    .hero-btns .btn {
        width: 100%;
        min-height: 46px;
        padding: 12px 18px;
    }
    .trust-badge {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
        gap: 6px;
        margin-top: 1.2rem;
    }
    .trust-badge span {
        font-size: 0.84rem;
        line-height: 1.35;
    }
    .price-amount { font-size: 2.25rem; }
    .price-block { min-height: 76px; }
    .cta-final h2 { font-size: 2.25rem; }
    .split-content h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .page-hero { padding-top: 120px; padding-bottom: 60px; }
    .page-hero-content h1 { font-size: 1.75rem; }
    .exit-modal-container { max-width: 90vw; max-height: 90vh; overflow-x: hidden; overflow-y: auto; }
    .exit-modal-left { display: none; }
    .exit-modal-right { padding: 30px 20px; }
    .exit-modal-right h2 { font-size: 1.5rem; }
}

@media (max-width: 400px) {
    .hero {
        padding-top: 132px;
        padding-bottom: 72px;
    }

    .hero-content h1 {
        font-size: 1.95rem;
        line-height: 1.06;
        letter-spacing: -0.02em;
        margin-bottom: 0.9rem;
    }

    .hero-subtitle {
        font-size: 0.96rem;
        line-height: 1.45;
        margin-bottom: 1.2rem !important;
    }

    .hero-btns {
        gap: 8px;
    }

    .hero-btns .btn {
        min-height: 44px;
        padding: 11px 14px;
        font-size: 0.95rem;
    }

    .trust-badge {
        margin-top: 1rem;
        gap: 4px;
    }

    .trust-badge .stars {
        font-size: 1.05rem;
    }

    .trust-badge span {
        font-size: 0.8rem;
    }

    header {
        padding: 14px 0;
    }

    .logo-img {
        height: 34px;
    }

    .mobile-menu-btn {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        font-size: 1.8rem;
    }

    .nav-links {
        padding: 74px 24px 34px;
        gap: 1.1rem;
    }

    .nav-links::before {
        width: 148px;
        height: 38px;
        margin-bottom: 1rem;
    }

    .nav-links a {
        font-size: 1.08rem;
    }

    .nav-links .mobile-only .btn {
        min-height: 44px;
        font-size: 0.95rem;
        padding: 12px 16px;
    }

    .mobile-nav-footer {
        margin-top: 0.9rem;
        padding-top: 1rem;
    }
}

/* ===================== */
/* Exit-Intent Modal     */
/* ===================== */
.exit-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 20px;
}

.exit-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-modal-container {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    max-width: 820px;
    width: 95%;
    max-height: min(92vh, 760px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-width: 0;
}

.exit-modal-overlay.active .exit-modal-container {
    transform: scale(1) translateY(0);
}

/* Left Panel — Image */
.exit-modal-left {
    position: relative;
    flex: 0 0 38%;
    background: linear-gradient(160deg, #2563EB 0%, #1e40af 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    min-height: 460px;
}

.exit-modal-left img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: top center;
    filter: drop-shadow(0 -4px 20px rgba(0, 0, 0, 0.15));
}

.exit-modal-left-accent {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.exit-modal-left-accent-2 {
    position: absolute;
    bottom: 30%;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

/* Right Panel — Form */
.exit-modal-right {
    flex: 1;
    min-width: 0;
    padding: 40px 36px;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

.exit-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.exit-modal-close:hover {
    background: #fee2e2;
    color: #dc2626;
}

.exit-modal-right h2 {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.exit-modal-right h2 span {
    color: var(--primary);
}

.exit-modal-right .modal-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

.exit-modal-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    min-width: 0;
}

.exit-modal-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.exit-modal-field.full-width {
    grid-column: 1 / -1;
}

.exit-modal-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.02em;
}

.exit-modal-field label .required {
    color: #dc2626;
}

.exit-modal-field input,
.exit-modal-field select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--text-main);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.exit-modal-field input::placeholder {
    color: #9CA3AF;
}

.exit-modal-field input:focus,
.exit-modal-field select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.exit-modal-submit {
    grid-column: 1 / -1;
    margin-top: 6px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.exit-modal-submit:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.34);
}

.exit-modal-privacy {
    grid-column: 1 / -1;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 4px;
    line-height: 1.4;
}

body.modal-open {
    overflow: hidden;
}

/* Removed ABOUT PAGE SPECIFIC STYLES -> pages/sobre.css */

/* Glassmorphism Utilities */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* CTA Final - Modernized */
.cta-final {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.cta-final::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    border-radius: 50%;
}

.cta-final h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .split-section {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .split-section {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .experience-badge {
        bottom: -20px;
        right: 50%;
        transform: translateX(50%);
        padding: 20px;
    }
    .cta-final h2 {
        font-size: 2.25rem;
    }
}

