/* ==========================================================================
   CRUZEIRO ENGENHARIA — MOBILE-FIRST CSS
   Máquina de Conversão — Alta Performance
   ========================================================================== */

/* ---------- RESET & VARIABLES ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy: #0B1D33;
    --navy-deep: #06111F;
    --navy-mid: #112B4A;
    --blue: #1A5FAC;
    --blue-light: #2A7FE0;
    --amber: #E8A830;
    --amber-light: #F5C45C;
    --amber-dark: #C78D20;
    --teal: #0D9488;
    --teal-light: #14B8A6;
    --green: #2EA55C;
    --red-alert: #D94040;
    --white: #FFFFFF;
    --gray-50: #F7F8FA;
    --gray-100: #EEF0F4;
    --gray-200: #D8DCE4;
    --gray-300: #C0C6D0;
    --gray-400: #8C95A6;
    --gray-600: #5A6375;
    --gray-800: #2D3444;
    --text: #1A1F2B;
    --text-light: #6B7280;
    --serif: 'Instrument Serif', Georgia, serif;
    --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 1px 3px rgba(11,29,51,0.08);
    --shadow-md: 0 4px 16px rgba(11,29,51,0.1);
    --shadow-lg: 0 8px 40px rgba(11,29,51,0.12);
    --shadow-xl: 0 20px 60px rgba(11,29,51,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: top 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    top: 0;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-img { height: 38px; width: auto; }
.logo-text { line-height: 1.15; }
.logo-name {
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--navy);
    letter-spacing: 0.02em;
    display: block;
}
.logo-group {
    font-size: 0.6rem;
    color: var(--amber);
    font-weight: 600;
    letter-spacing: 0.05em;
    display: block;
}

/* Nav hidden on mobile */
.header-nav { display: none; }
.header-nav a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: var(--transition);
}
.header-nav a:hover { color: var(--navy); }
.header-nav a:hover::after { width: 100%; }

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--amber);
    color: var(--navy-deep);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
.header-cta:hover {
    background: var(--amber-light);
    transform: translateY(-1px);
}
.header-cta svg { width: 14px; height: 14px; }

/* Mobile menu button */
.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    order: 3;
}
.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile nav overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    padding: 80px 24px 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy);
    padding: 8px;
    line-height: 1;
}
.mobile-nav a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}
.mobile-nav a:hover { color: var(--blue); padding-left: 8px; }
.mobile-nav .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--amber);
    color: var(--navy-deep);
    font-weight: 700;
    padding: 16px 24px;
    border-radius: var(--radius);
    margin-top: 24px;
    text-decoration: none;
    font-size: 1rem;
}
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: var(--navy-deep);
    overflow: hidden;
    padding-top: 64px; /* header (64px) */
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(6,17,31,0.94) 0%, rgba(11,29,51,0.85) 40%, rgba(26,95,172,0.6) 100%);
    z-index: 1;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-badge span {
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-weight: 500;
}
.hero h1 {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--amber); }
.hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--amber);
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    white-space: nowrap;
}
.btn-primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,168,48,0.3);
}
.btn-primary svg { width: 20px; height: 20px; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    padding: 16px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.25);
    font-family: var(--sans);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 12px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--blue);
    font-family: var(--sans);
}
.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
}

/* Hero stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--amber);
    line-height: 1;
}
.hero-stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    margin-top: 4px;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: max-content;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
}
.trust-icon { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

/* ---------- SECTIONS ---------- */
.section { padding: 64px 16px; }
.section-gray { background: var(--gray-50); }
.section-navy { background: var(--navy-deep); }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--teal);
    border-radius: 1px;
}
.section-title {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-title-white { color: var(--white); }
.section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--amber);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.service-card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.25;
}
.service-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 14px;
}
.service-link {
    color: var(--blue);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-link svg { width: 14px; height: 14px; transition: var(--transition); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ---------- URGENCY / PAIN SECTION ---------- */
.urgency-section {
    background: linear-gradient(135deg, var(--navy-deep) 0%, #1a0a0a 100%);
    position: relative;
    overflow: hidden;
}
.urgency-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217,64,64,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.urgency-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.urgency-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}
.urgency-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(217,64,64,0.3);
}
.urgency-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.urgency-card h3 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.urgency-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.6;
}
.urgency-cta {
    text-align: center;
    margin-top: 36px;
}

/* ---------- PROCESS / HOW IT WORKS ---------- */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    counter-reset: process;
}
.process-step {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px 24px 28px 80px;
    counter-increment: process;
    transition: var(--transition);
}
.process-step:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--amber);
}
.process-step::before {
    content: counter(process);
    position: absolute;
    left: 24px;
    top: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--amber);
    color: var(--navy-deep);
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-step h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 6px;
}
.process-step p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ---------- DIFFERENTIALS ---------- */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.diff-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.diff-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.diff-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
}
.diff-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}
.diff-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ---------- ABOUT SECTION ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.about-features { display: grid; gap: 20px; margin-top: 24px; }
.about-feat { display: flex; gap: 14px; }
.about-feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}
.about-feat h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}
.about-feat p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}
.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 12px 20px;
    box-shadow: var(--shadow-lg);
}
.about-image-badge strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--navy);
    line-height: 1;
}
.about-image-badge span {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ---------- FORM SECTION ---------- */
.form-section {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px 20px;
    box-shadow: var(--shadow-xl);
    max-width: 640px;
    margin: 0 auto;
}
.form-wrapper h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 6px;
    text-align: center;
}
.form-wrapper .form-desc {
    color: var(--text-light);
    font-size: 0.88rem;
    text-align: center;
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--text);
    background: var(--gray-50);
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26,95,172,0.12);
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238C95A6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--amber);
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--sans);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.form-submit:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,168,48,0.3);
}
.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
.form-submit .spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top-color: var(--navy);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
.form-submit.loading .spinner { display: block; }
.form-submit.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Form messages */
.form-message {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-top: 16px;
    display: none;
    text-align: center;
}
.form-message.success {
    display: block;
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.form-message.error {
    display: block;
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 40px 24px;
    text-align: center;
}
.cta-banner h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}
.cta-banner h2 em { font-style: italic; color: var(--amber); }
.cta-actions {
    display: flex;
    gap: 12px;
    flex-direction: column;
}
.cta-actions a { justify-content: center; }

/* ---------- FOOTER ---------- */
.footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.6);
    padding: 48px 16px 24px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 24px;
}
.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-brand-logo img { height: 36px; width: auto; }
.footer-brand-name { color: var(--white); font-weight: 600; font-size: 0.88rem; }
.footer-brand-group { color: var(--amber); font-size: 0.72rem; font-weight: 500; }
.footer-brand p {
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 10px;
}
.footer h4 {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links-list a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.82rem;
    transition: var(--transition);
}
.footer-links-list a:hover { color: var(--amber); }
.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
}
.footer-contact-item small {
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
}
.footer-contact-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-contact-item a:hover { color: var(--amber); }
.footer-whatsapp-link {
    color: #25D366 !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 0.75rem;
}
.footer-bottom span { color: var(--amber); }

/* ---------- MAP ---------- */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 24px;
    height: 250px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 16px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ---------- ANIMATIONS ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- INNER PAGE STYLES ---------- */
.page-hero {
    background: var(--navy-deep);
    padding: 104px 16px 60px; /* header (64px) + breathing room */
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(6,17,31,0.95) 0%, rgba(11,29,51,0.85) 50%, rgba(26,95,172,0.5) 100%);
    z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}
.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumb {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
.breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 6px; }

/* Content sections */
.content-section { padding: 48px 16px; }
.content-section h2 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 16px;
}
.content-section h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 600;
}
.content-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}
.content-section ul, .content-section ol {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 20px;
}
.content-section li { margin-bottom: 8px; }

/* FAQ Accordion */
.faq-item {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--white);
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
    gap: 12px;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--gray-400);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer-inner {
    padding: 0 20px 16px;
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ---------- PHONE FLOATING BAR (MOBILE) ---------- */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    padding: 10px 16px;
    display: flex;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}
.mobile-cta-phone {
    background: var(--navy);
    color: var(--white);
}
.mobile-cta-whatsapp {
    background: #25D366;
    color: var(--white);
}

/* Add bottom padding when mobile bar is visible */
body.has-mobile-bar { padding-bottom: 72px; }
body.has-mobile-bar .whatsapp-float { bottom: 84px; }

/* ============================================================
   TABLET BREAKPOINT (min-width: 600px)
   ============================================================ */
@media (min-width: 600px) {
    .section { padding: 80px 20px; }
    .hero-inner { padding: 60px 20px; }
    .hero h1 { font-size: 2.6rem; }
    .hero-actions { flex-direction: row; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .urgency-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .diff-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr 1fr; }
    .cta-actions { flex-direction: row; justify-content: center; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-inner { justify-content: center; }
    .header-inner { padding: 0 20px; }
    .form-wrapper { padding: 40px 32px; }
    .page-hero h1 { font-size: 2.2rem; }
    .page-hero { padding: 140px 20px 80px; }
}

/* ============================================================
   DESKTOP BREAKPOINT (min-width: 1024px)
   ============================================================ */
@media (min-width: 1024px) {


    .header-inner { height: 72px; padding: 0 24px; }
    .header-nav {
        display: flex;
        align-items: center;
        gap: 32px;
    }
    .mobile-menu-btn { display: none; }
    .logo-img { height: 44px; }

    .hero { min-height: 92vh; padding-top: 72px; } /* header (72px) */
    .hero-inner { padding: 80px 24px; }
    .hero h1 { font-size: clamp(2.8rem, 5.5vw, 4.5rem); max-width: 700px; }
    .hero-sub { font-size: 1.15rem; max-width: 560px; }
    .hero-stats { grid-template-columns: repeat(4, auto); gap: 48px; display: flex; }
    .hero-stat-num { font-size: 2.4rem; }

    .section { padding: 100px 24px; }
    .section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); }

    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .service-card { padding: 36px 32px; }

    .urgency-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

    .process-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }

    .diff-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

    .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
    .about-image-badge { bottom: 24px; left: 24px; padding: 16px 24px; }
    .about-image-badge strong { font-size: 1.8rem; }

    .form-wrapper { padding: 48px 40px; }
    .form-wrapper h3 { font-size: 1.8rem; }

    .cta-banner {
        padding: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 40px;
    }
    .cta-banner h2 { font-size: 2rem; max-width: 500px; margin-bottom: 0; }
    .cta-actions { flex-shrink: 0; }

    .footer { padding: 56px 24px 32px; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px; }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }

    /* Hide mobile CTA bar on desktop */
    .mobile-cta-bar { display: none; }
    body.has-mobile-bar { padding-bottom: 0; }
    body.has-mobile-bar .whatsapp-float { bottom: 24px; }
    .whatsapp-float { right: 24px; bottom: 24px; }

    .map-container { height: 350px; }
    .page-hero h1 { font-size: 2.8rem; }
    .page-hero { padding: 160px 24px 80px; }
    .content-section { padding: 64px 24px; }
    .content-section h2 { font-size: 2rem; }

    .header-cta { font-size: 0.88rem; padding: 10px 24px; }
}

/* ---------- UTILITY CLASSES ---------- */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 32px; }
.mt-8 { margin-top: 64px; }

/* ---------- PRINT ---------- */
@media print {
    .header, .whatsapp-float, .mobile-cta-bar { display: none; }
    .hero { min-height: auto; padding: 40px 20px; }
    body { font-size: 12pt; }
}
