/* ====================================
   Franco Advogados — style.css
   Colors: White (#FAFAFA) / Navy (#0F1B2D) / Vermelho Telha (#9B3E3B)
   Style: Luxo Refinado
   ==================================== */

/* ---- Variables ---- */
:root {
    --navy: #0F1B2D;
    --navy-light: #162236;
    --navy-glow: rgba(15, 27, 45, 0.4);
    --accent: #9B3E3B;
    --accent-light: #C25553;
    --accent-dark: #7A302E;
    --cream: #FAFAFA;
    --white: #FFFFFF;
    --text: #4b5563;
    --text-light: #9ca3af;
    --text-dark: #1f2937;
    --border: rgba(15, 27, 45, 0.05);
    --border-light: rgba(15, 27, 45, 0.10);
    --font-body: 'Outfit', sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --radius-sm: 0.125rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset / Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

::selection {
    background-color: rgba(15, 27, 45, 0.3);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* ---- Typography ---- */
.text-glow {
    text-shadow: 0 0 40px rgba(15, 27, 45, 0.15);
}

.gold-flash-text {
    font-family: var(--font-serif);
    font-size: 1.18em;
    font-weight: 500;
    letter-spacing: -0.01em;
    background: linear-gradient(90deg, #9B3E3B 15%, #D4736F 50%, #9B3E3B 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.22));
}

.lux-highlight {
    font-family: var(--font-serif);
    font-size: 1.18em;
    font-weight: 500;
    letter-spacing: -0.01em;
    display: inline;
}

/* ---- Buttons ---- */
.gold-shimmer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, #1a8a4a 0%, #2ebd68 100%);
    background-size: 200% auto;
    color: var(--white) !important;
    border: 1px solid rgba(46, 189, 104, 0.25) !important;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.gold-shimmer-btn:hover {
    background-position: right center !important;
    box-shadow: 0 12px 24px -6px rgba(26, 138, 74, 0.4) !important;
    transform: translateY(-2px) !important;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background-color: #1a8a4a;
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px -10px rgba(26, 138, 74, 0.35);
}

.btn-dark:hover {
    background-color: #167a40;
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(26, 138, 74, 0.5);
}

.btn-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.gold-shimmer-btn .btn-icon {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
}

.btn-dark .btn-icon {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.gold-shimmer-btn:hover .btn-icon,
.btn-dark:hover .btn-icon {
    transform: translateX(4px);
}

/* Glass Shine Effect */
.btn-dark .btn-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 120%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg);
    transition: left 1s ease-in-out;
    z-index: 1;
    pointer-events: none;
}

.btn-dark:hover .btn-shine {
    left: 150%;
}

/* ---- Container ---- */
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---- Background Grid ---- */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.02;
    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='%230F1B2D' fill-opacity='0.4'%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");
}

/* ==========================
   NAVIGATION
   ========================== */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: rgba(15, 27, 45, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
}

.nav-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-logo {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
}

.nav-logo img {
    height: 2rem;
    width: auto;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.nav-links a {
    transition: color 0.3s;
}

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

.nav-links a.active {
    color: var(--white);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a.active iconify-icon {
    color: var(--accent);
}

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

.nav-cta {
    display: none;
}

/* ---- Mobile Menu ---- */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    background: rgba(15, 27, 45, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    z-index: 49;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--white);
}

.mobile-menu .gold-shimmer-btn {
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
    width: 100%;
}

/* ==========================
   HERO
   ========================== */
.hero {
    position: relative;
    z-index: 10;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(15, 27, 45, 0.2);
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    background: url('imagens/backg01.webp') center/cover no-repeat;
}

.hero-bg-gradient {
    display: none;
}

.hero-bg-bottom {
    display: none;
}

.hero-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-persona-mobile {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    max-height: 55%;
    z-index: 5;
    pointer-events: none;
}

@media (max-width: 767px) {
    .hero-bg {
        background: url('imagens/mobile.webp') center/cover no-repeat !important;
    }
    
    .hero-content {
        padding-bottom: 300px; /* Space for the persona image */
    }
}

.hero-text {
    max-width: 36rem;
}

.hero h1 {
    font-size: 1.875rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero h1 .subtitle {
    display: block;
    font-size: 1.125rem;
    margin-top: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    letter-spacing: 0.01em;
}

.hero-desc {
    font-size: 1rem;
    color: #d1d5db;
    max-width: 30rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

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

.hero-link {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 0.25rem;
    transition: border-color 0.3s;
}

.hero-link:hover {
    border-color: var(--accent);
}

/* ==========================
   MODULES GRID
   ========================== */
.modules {
    position: relative;
    z-index: 10;
    width: 100%;
    background: var(--cream);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 90rem;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}

.module-card {
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    min-height: 180px;
    cursor: pointer;
    transition: background-color 0.5s;
    border-bottom: 1px solid var(--border);
}

.module-card:hover {
    background: rgba(255,255,255,0.4);
}

.module-number {
    position: absolute;
    right: -0.5rem;
    bottom: -1rem;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(15, 27, 45, 0.05);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    transition: transform 0.7s;
}

.module-card:hover .module-number {
    transform: scale(1.1);
}

.module-icon-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 10;
    position: relative;
}

.module-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(15, 27, 45, 0.05);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    box-shadow: inset 0 0 0 1px rgba(15, 27, 45, 0.1);
}

.module-card:hover .module-icon {
    background: var(--navy);
    color: var(--white);
}

.module-info {
    z-index: 10;
    margin-top: 0.5rem;
    position: relative;
}

.module-info h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.025em;
    margin-bottom: 0.25rem;
}

.module-info p {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    font-weight: 700;
    font-style: italic;
}

.module-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.module-card:hover .module-bar {
    transform: scaleX(1);
}

/* ==========================
   SERVICES (Bento Grid)
   ========================== */
.services {
    overflow: hidden;
    padding: 4rem 0 4rem;
    position: relative;
    border-bottom: 1px solid var(--border);
    background: var(--cream);
}

.services-glow {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    width: 500px;
    height: 500px;
    background: rgba(15, 27, 45, 0.05);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

.section-header {
    max-width: 48rem;
    margin: 0 auto 5rem;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(15, 27, 45, 0.05);
    border: 1px solid rgba(15, 27, 45, 0.1);
    margin-bottom: 1.5rem;
}

.section-badge .dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: var(--navy);
    animation: pulse 2s infinite;
}

.section-badge span:last-child {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.025em;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1rem;
    color: var(--text);
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 20;
}

.service-card {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--white);
    z-index: 20;
    transition: all 0.5s;
    border: 1px solid #f3f4f6;
    border-radius: var(--radius-xl);
}

.service-card:hover {
    box-shadow: 0 20px 40px -15px rgba(15, 27, 45, 0.15);
    z-index: 30;
    transform: translateY(-4px);
}

.service-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(15, 27, 45, 0.05), transparent, transparent);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.service-card:hover .service-card-gradient {
    opacity: 1;
}

.service-card-content {
    z-index: 20;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    justify-content: space-between;
    height: 100%;
    pointer-events: none;
}

.service-icon {
    display: flex;
    color: var(--navy);
    background: rgba(15, 27, 45, 0.05);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--navy);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.025em;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
}

.service-card-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.service-card:hover .service-card-bar {
    transform: scaleX(1);
}

.services-cta {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 20;
    position: relative;
}

/* ==========================
   STEPS SECTION
   ========================== */
.steps {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}

.steps-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(155, 62, 59, 0.05) 0%, transparent 50%);
}

.steps-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.steps-header h2 {
    font-size: 1.875rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.steps-header p {
    font-size: 1rem;
    color: #e5e7eb;
    max-width: 36rem;
    margin: 0 auto;
    font-weight: 300;
}

.steps-timeline {
    position: relative;
}

.steps-line {
    display: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.step-card {
    position: relative;
}

.step-dot {
    display: none;
}

.step-inner {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-2xl);
    position: relative;
    min-height: 220px;
    transition: all 0.5s;
}

.step-inner:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    pointer-events: none;
    transition: color 0.3s;
}

.step-inner:hover .step-number {
    color: rgba(155, 62, 59, 0.2);
}

.step-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.step-label span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: rgba(255,255,255,0.1);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-sm);
}

.step-inner p {
    color: #e5e7eb;
    font-size: 0.875rem;
    line-height: 1.7;
    position: relative;
    z-index: 10;
}

.steps-footer {
    text-align: center;
    max-width: 48rem;
    margin: 4rem auto 0;
}

.steps-footer p {
    color: #e5e7eb;
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ==========================
   DIFERENCIAIS
   ========================== */
.diferenciais {
    z-index: 10;
    padding: 4rem 0;
    position: relative;
    border-bottom: 1px solid var(--border);
    background: var(--cream);
}

.diferenciais-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.diferenciais-header h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.025em;
    line-height: 1;
}

.diferenciais-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
}

.diferenciais-label span:first-child {
    width: 2rem;
    height: 1px;
    background: var(--navy);
}

.diferenciais-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.diferencial-card {
    background: var(--white);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-3xl);
    transition: all 0.5s;
}

.diferencial-card:hover {
    box-shadow: 0 20px 40px -15px rgba(15, 27, 45, 0.08);
    transform: translateY(-4px);
}

.diferencial-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 27, 45, 0.02), transparent, transparent);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.diferencial-card:hover .diferencial-card-bg {
    opacity: 1;
}

.diferencial-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.diferencial-icon-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.diferencial-icon {
    display: flex;
    color: var(--navy);
    background: rgba(15, 27, 45, 0.05);
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    flex-shrink: 0;
}

.diferencial-card:hover .diferencial-icon {
    background: var(--navy);
    color: var(--white);
    transform: scale(1.1);
}

.diferencial-title-group h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.025em;
    margin-bottom: 0.25rem;
}

.diferencial-title-group p {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 700;
}

.diferencial-desc {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
}

/* ==========================
   SOBRE
   ========================== */
.sobre {
    padding: 6rem 0;
    position: relative;
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
}

.sobre-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.sobre-content {
    width: 100%;
    flex: 1;
}

.sobre-image {
    width: 100%;
    flex: 1;
    position: relative;
}

.sobre-image-inner {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.sobre-image-inner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

.sobre-image-accent {
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent);
    border-radius: var(--radius-2xl);
    pointer-events: none;
    opacity: 0.1;
}

.sobre-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--white);
}

.sobre-label span:first-child {
    width: 2.5rem;
    height: 1px;
    background: var(--white);
}

.sobre-content h2 {
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
}

.sobre-quote {
    font-size: 1.125rem;
    color: #d1d5db;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 3rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent);
}

.sobre-checks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.sobre-check {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.sobre-check iconify-icon {
    color: var(--accent);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.sobre-check p {
    color: #d1d5db;
    font-size: 0.875rem;
}

.sobre-check strong {
    color: var(--white);
    font-weight: 700;
}

/* ==========================
   SÓCIOS
   ========================== */
.socios {
    padding: 4rem 0 6rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    color: var(--white);
    border-bottom: 1px solid var(--border);
}

.socios-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(155, 62, 59, 0.05) 0%, transparent 50%);
}

.socios-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.socios-header .section-badge {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}

.socios-header .section-badge .dot {
    background: var(--accent);
}

.socios-header .section-badge span:last-child {
    color: var(--accent);
}

.socios-header h2 {
    font-size: 1.875rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.socios-header p {
    color: #d1d5db;
    font-size: 0.875rem;
    font-weight: 300;
}

.socios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 64rem;
    margin: 0 auto;
}

.socio-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.socio-avatar-wrap {
    width: 100%;
    max-width: 24rem;
    position: relative;
    margin-bottom: 2rem;
}

.socio-avatar-accent {
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translate(-0.75rem, 0.75rem);
    border-radius: var(--radius-sm);
}

.socio-avatar-border {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.2);
    transform: translate(0.5rem, -0.5rem);
    border-radius: var(--radius-sm);
}

.socio-avatar {
    position: relative;
    background: var(--navy-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socio-avatar-placeholder {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: rgba(155, 62, 59, 0.2);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
}

.socio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s;
    opacity: 0.95;
}

.socio-card:hover .socio-avatar img {
    transform: scale(1.05);
}

.socio-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
}

.socio-badge-inner {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
}

.socio-badge-inner span {
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 700;
}

.socio-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.socio-card .socio-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1rem;
}

.socio-card .socio-bio {
    color: #d1d5db;
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ==========================
   FAQ
   ========================== */
.faq {
    padding: 4rem 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 1.875rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid #f3f4f6;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    user-select: none;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary .faq-arrow {
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary .faq-arrow {
    transform: rotate(-180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
    border-top: 1px solid #fafafa;
    padding-top: 1rem;
}

.faq-answer strong {
    color: var(--navy);
    font-weight: 600;
}

.faq-answer ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-top: 0.5rem;
}

.faq-answer ul li {
    margin-bottom: 0.375rem;
}

/* ==========================
   REVIEWS (AVALIAÇÕES)
   ========================== */
.reviews {
    padding: 5rem 1.5rem;
    background-color: var(--white);
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-wrapper {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.review-nav {
    display: none;
    background: var(--white);
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    cursor: pointer;
    z-index: 10;
    color: var(--navy);
    transition: all 0.3s;
    flex-shrink: 0;
}

.review-nav:hover {
    background: var(--navy);
    color: var(--white);
}

.reviews-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    background: #f3f4f6;
    border-radius: var(--radius-xl);
    padding: 2rem;
    min-width: 280px;
    width: 320px;
    flex-shrink: 0;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.review-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
    flex-shrink: 0;
    object-fit: cover;
}

.review-info {
    display: flex;
    flex-direction: column;
}

.review-info h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
}

.review-info span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.google-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #fbbc04;
}

.review-card p {
    font-size: 0.875rem;
    color: var(--navy);
    line-height: 1.6;
    font-weight: 400;
}

/* ==========================
   CTA SECTION
   ========================== */
.cta-section {
    padding: 3rem 0 3rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.cta-card {
    background: var(--accent);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.cta-image {
    width: 100%;
    height: 200px;
    position: relative;
    z-index: 10;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.cta-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.cta-glow-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    filter: blur(100px);
    transform: translate(50%, -50%);
    pointer-events: none;
}

.cta-glow-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    filter: blur(100px);
    transform: translate(-50%, 50%);
    pointer-events: none;
}

.cta-availability {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
    width: fit-content;
}

.cta-availability .dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}

.cta-availability span:last-child {
    font-size: 0.5625rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.cta-content h2 {
    font-size: 1.875rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 0.875rem;
    color: var(--white);
    margin-bottom: 15px;
    padding-bottom: 15px;
    max-width: 36rem;
    font-weight: 300;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.cta-email {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 0.5rem;
    transition: border-color 0.3s;
    align-self: center;
    margin-top: 0.5rem;
}

.cta-email:hover {
    border-color: var(--accent);
}

.cta-social {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.cta-social a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s;
}

.cta-social a:hover {
    color: var(--white);
}

.cta-social a iconify-icon {
    transition: transform 0.3s;
}

.cta-social a:hover iconify-icon {
    transform: scale(1.1);
}

.cta-social a span {
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.cta-phone {
    color: rgba(255,255,255,0.8) !important;
}

.cta-phone:hover {
    color: var(--white) !important;
}

.cta-phone iconify-icon {
    color: var(--white);
}

.cta-phone:hover iconify-icon {
    transform: rotate(12deg) !important;
    color: var(--white);
}

.cta-phone span {
    font-size: 0.75rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.15em !important;
}

.cta-card .gold-flash-text {
    background: none;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

/* ==========================
   FOOTER
   ========================== */
.site-footer {
    background: var(--navy);
    padding: 6rem 0 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    text-align: center;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.footer-logo img {
    height: 3rem;
    width: auto;
}

.footer-quote {
    font-size: 0.6875rem;
    color: #d1d5db;
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
    max-width: 240px;
}

.footer-quote .quote-author {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-style: normal;
    color: var(--text-light);
}

.footer-col h4 {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col ul li a {
    font-size: 0.625rem;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-col .footer-address {
    font-size: 0.625rem;
    color: #d1d5db;
    line-height: 2;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.footer-col .footer-email {
    font-size: 0.5625rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 0.25rem;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-copy {
    font-size: 0.5625rem;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 500;
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-credit span {
    font-size: 0.5rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 300;
}

.footer-credit a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-credit a img {
    height: 1rem;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: brightness(0) invert(1);
}

.footer-credit a:hover img {
    opacity: 1;
}

.footer-credit a iconify-icon {
    color: var(--accent);
    opacity: 0;
    transition: all 0.3s;
    transform: translateX(-0.5rem);
}

.footer-credit a:hover iconify-icon {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================
   WHATSAPP WIDGET
   ========================== */
.wa-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    pointer-events: none;
}

.wa-balloon {
    background: var(--white);
    color: var(--navy);
    padding: 1rem;
    border-radius: 0.375rem;
    box-shadow: var(--shadow-2xl);
    border: 1px solid #f3f4f6;
    max-width: 260px;
    transform: scale(0);
    transform-origin: bottom right;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    position: relative;
}

.wa-balloon.active {
    transform: scale(1);
    opacity: 1;
}

.wa-close {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;
    line-height: 1;
}

.wa-close:hover {
    color: #ef4444;
}

.wa-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.wa-profile-img {
    position: relative;
    flex-shrink: 0;
}

.wa-profile-img .wa-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(15, 27, 45, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

.wa-profile-img img.wa-avatar {
    display: block;
}

.wa-profile-img .wa-online {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid var(--white);
}

.wa-profile-info h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--navy);
}

.wa-profile-info span {
    font-size: 0.5625rem;
    color: var(--text-light);
}

.wa-balloon-msg {
    font-size: 0.75rem;
    line-height: 1.6;
    font-weight: 500;
    color: #4b5563;
}

.wa-balloon-triangle {
    position: absolute;
    bottom: -0.5rem;
    right: 1.25rem;
    width: 1rem;
    height: 1rem;
    background: var(--white);
    border-bottom: 1px solid #f3f4f6;
    border-right: 1px solid #f3f4f6;
    transform: rotate(45deg);
}

.wa-btn {
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px -10px rgba(37, 211, 102, 0.8);
}

/* ==========================
   ANIMATIONS
   ========================== */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes pulse-accent {
    0% { box-shadow: 0 0 0 0 rgba(155, 62, 59, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(155, 62, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(155, 62, 59, 0); }
}

.animate-pulse-accent {
    animation: pulse-accent 2s infinite;
}

/* ---- Scroll Reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================
   RESPONSIVE
   ========================== */

/* Tablet (md: 768px) */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-cta {
        display: block;
    }

    .nav-toggle {
        display: none;
    }

    .hero-persona-mobile {
        display: none;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .gold-shimmer-btn, .btn-dark {
        padding: 0.875rem 2rem;
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h1 .subtitle {
        font-size: 1.35rem;
        letter-spacing: 0.015em;
    }

    .hero-desc {
        font-size: 1.125rem;
    }

    .hero-content {
        padding: 3rem 1.5rem;
    }

    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .module-card {
        border-bottom: none;
    }

    .services {
        padding: 6rem 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 3rem;
    }

    .steps {
        padding: 6rem 0;
    }

    .steps-header h2 {
        font-size: 3rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diferenciais {
        padding: 6rem 0;
    }

    .diferenciais-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .diferenciais-header h2 {
        font-size: 2.5rem;
    }

    .diferencial-inner {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
    }

    .diferencial-card {
        padding: 2.5rem;
    }

    .sobre {
        padding: 6rem 0;
    }

    .sobre h2 {
        font-size: 3rem;
    }

    .socios {
        padding: 6rem 0;
    }

    .socios-header h2 {
        font-size: 3rem;
    }

    .socios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .socio-card {
        align-items: flex-start;
        text-align: left;
    }

    .faq {
        padding: 6rem 0;
    }

    .faq-header h2 {
        font-size: 3rem;
    }

    .faq-item summary {
        padding: 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }

    .reviews {
        padding: 6rem 0;
    }
    
    .review-nav {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .review-nav.prev {
        left: -1.5rem;
    }

    .review-nav.next {
        right: -1.5rem;
    }
    
    .reviews-slider {
        padding: 1rem;
    }
    
    .review-card {
        width: 380px;
        scroll-snap-align: start;
    }

    .cta-section {
        padding: 5rem 0;
    }

    .cta-card {
        flex-direction: row;
        border-radius: var(--radius-3xl);
    }

    .cta-image {
        width: 45%;
        height: auto;
    }

    .cta-content {
        width: 55%;
        padding: 2rem;
    }

    .cta-content h2 {
        font-size: 3rem;
    }

    .cta-buttons {
        flex-direction: row;
        align-items: center;
    }

    .cta-email {
        margin-top: 0;
        align-self: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .footer-col {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Desktop (lg: 1024px) */
@media (min-width: 1024px) {
    .hero {
        min-height: 75vh;
    }

    .modules-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .modules-grid .module-card {
        border-bottom: none;
        border-right: 1px solid var(--border);
    }

    .modules-grid .module-card:last-child {
        border-right: none;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .steps-line {
        display: block;
        position: absolute;
        top: 0;
        left: 2.5rem;
        right: 2.5rem;
        height: 2px;
        background: linear-gradient(to right, rgba(155, 62, 59, 0.3), rgba(155, 62, 59, 0.1), transparent);
        z-index: 15;
    }

    .step-dot {
        display: flex;
        width: 1rem;
        height: 1rem;
        border-radius: 50%;
        background: var(--accent);
        border: 3px solid var(--navy);
        position: absolute;
        top: -0.5rem;
        left: 2.5rem;
        z-index: 20;
        box-shadow: 0 0 15px rgba(155, 62, 59, 0.5);
        transition: transform 0.3s;
    }

    .step-card:hover .step-dot {
        transform: scale(1.25);
    }

    .sobre-inner {
        flex-direction: row;
        gap: 4rem;
    }

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

    .cta-content {
        padding: 2rem 3rem;
    }

    .cta-content h2 {
        font-size: 2.75rem;
    }
}

/* Large (xl: 1280px) */
@media (min-width: 1280px) {
    .socios-grid {
        gap: 6rem;
    }
}
