@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-body: #F8FAFC;
    --primary-navy: #0B1C2E;
    --accent-blue: #3B82F6;
    --accent-blue-hover: #2563EB;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --cta-primary: #3B82F6;
    --cta-secondary: #22C55E;
    --card-bg: #FFFFFF;
    --border-light: #E2E8F0;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --container-padding: 1.5rem;
    --section-spacing: 5rem
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-navy);
    margin-top: 0;
    font-weight: 700
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding)
}

.section {
    padding: var(--section-spacing) 0
}

.text-center {
    text-align: center
}

.hidden {
    display: none
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all .3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem
}

.btn-primary {
    background-color: var(--cta-primary);
    color: #fff;
    box-shadow: 0 4px 6px rgba(59, 130, 246, .25)
}

.btn-primary:hover {
    background-color: var(--accent-blue-hover);
    transform: translateY(-1px)
}

.btn-whatsapp {
    background-color: var(--cta-secondary);
    color: #fff;
    box-shadow: 0 4px 6px rgba(34, 197, 94, .25)
}

.btn-whatsapp:hover {
    background-color: #16A34A;
    transform: translateY(-1px)
}

.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-soft)
}

.site-header {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1);
    position: sticky;
    top: 0;
    z-index: 100
}

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

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy)
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 2rem;
    font-weight: 500;
    font-size: .95rem;
    transition: color .2s
}

.main-nav a:not(.btn):hover {
    color: var(--accent-blue)
}

.hero-section {
    background: linear-gradient(135deg, #0F2035 0%, #1E3A5F 100%);
    color: #fff;
    padding: 6rem 0 8rem;
    position: relative;
    overflow: hidden
}

.btn-metallic-blue {
    background: linear-gradient(135deg, #0061FF 0%, #0036C8 100%);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 97, 255, .4);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 4px;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    gap: .5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .2)
}

.btn-metallic-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 97, 255, .6);
    background: linear-gradient(135deg, #2E85FF 0%, #0045FF 100%)
}

.section-trust {
    background-color: #F8FAFC;
    padding: 4rem 0;
    border-top: 1px solid #E2E8F0
}

.google-trust-badge {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #E2E8F0
}

.google-logo-text {
    font-family: 'Product Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #5F6368
}

.google-g,
.google-g2 {
    color: #4285F4
}

.google-o1,
.google-e {
    color: #EA4335
}

.google-o2 {
    color: #FBBC05
}

.google-l {
    color: #34A853
}

.hero-content h1 {
    color: #fff;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.hero-text {
    font-size: 1.15rem;
    color: #CBD5E1;
    margin-bottom: 2.5rem;
    max-width: 90%
}

.subline {
    display: block;
    font-family: 'Inter', sans-serif;
    color: var(--accent-blue);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-size: .9rem
}

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

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

.hero-form-card {
    background: #fff;
    padding: 2.5rem;
    border: none;
    border-top: 4px solid var(--accent-blue);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .2), 0 10px 10px -5px rgba(0, 0, 0, .1);
    position: relative
}

.hero-form-card::after {
    display: none
}

.hero-form-card h3 {
    text-align: center;
    color: var(--primary-navy);
    margin-bottom: .5rem;
    font-size: 1.5rem
}

.hero-form-card p {
    text-align: center;
    font-size: .9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem
}

.form-group {
    margin-bottom: 1rem
}

.form-group label {
    display: block;
    font-size: .85rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: .3rem
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: .75rem;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color .2s;
    background: #F8FAFC;
    resize: vertical
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .1)
}

.full-width {
    width: 100%
}

.trust-bar {
    background-color: #fff;
    border-bottom: 1px solid #E2E8F0;
    padding: 1.5rem 0
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-weight: 600;
    color: var(--primary-navy)
}

.trust-icon {
    font-size: 1.5rem
}

.bg-white {
    background-color: #fff
}

.section-header {
    margin-bottom: 4rem
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-navy)
}

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

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem
}

.vehicle-card {
    border-radius: 8px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);
    border-color: var(--accent-blue)
}

.vehicle-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-navy)
}

.vehicle-card p {
    color: var(--text-light);
    font-size: .95rem
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    counter-reset: step
}

.step {
    text-align: center;
    position: relative
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #E2E8F0;
    margin-bottom: 1rem;
    line-height: 1
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: .5rem;
    color: var(--primary-navy)
}

.step p {
    color: var(--text-light)
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem
}

.content-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-navy)
}

.content-block p {
    margin-bottom: 1.5rem;
    color: var(--text-dark)
}

.check-list {
    list-style: none;
    padding: 0
}

.check-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: .75rem;
    color: var(--text-dark)
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 700
}

.site-footer {
    background-color: var(--primary-navy);
    color: #fff;
    padding: 4rem 0 1rem
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem
}

.footer-col h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif
}

.footer-col ul {
    list-style: none;
    padding: 0
}

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

.footer-col a {
    color: #94A3B8;
    text-decoration: none;
    transition: color .2s
}

.footer-col a:hover {
    color: #fff
}

.footer-col p {
    color: #94A3B8;
    margin-bottom: .5rem
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 2rem;
    font-size: .85rem;
    color: #64748B
}

.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .05);
    z-index: 1000;
    padding: 10px;
    gap: 10px
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    transition: opacity .2s
}

.sticky-btn:hover {
    opacity: .9
}

.sticky-call {
    background-color: var(--cta-primary)
}

.sticky-whatsapp {
    background-color: var(--cta-secondary)
}

@media(max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center
    }

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

    .hero-text {
        margin-left: auto;
        margin-right: auto
    }

    .hero-buttons {
        justify-content: center
    }
}

@media(max-width:768px) {
    :root {
        --section-spacing: 3rem
    }

    .mobile-sticky-bar {
        display: flex
    }

    .site-footer {
        padding-bottom: 5rem
    }

    .process-steps,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .section-header h2 {
        font-size: 2rem
    }
}