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

:root {
    --blue-900: #0a1628;
    --blue-800: #0f2440;
    --blue-700: #163a5f;
    --blue-600: #1a4f7a;
    --blue-500: #2563eb;
    --blue-400: #3b82f6;
    --blue-100: #dbeafe;
    --blue-50: #eff6ff;
    --gray-600: #4b5563;
    --gray-400: #9ca3af;
    --white: #ffffff;
}

h1, h2, h3 {
    font-family: 'Karla', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inconsolata', monospace;
    color: #1f2937;
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
    color: var(--white);
    text-align: center;
}

/* Header */
.header {
    padding: 12px 0;
    background: var(--white);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
}

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

.header-cta {
    font-family: 'Karla', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    background: #c46a32;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.header-cta:hover {
    background: #a3572a;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'MuseoModerno', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-500);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.header-icon {
    width: 36px;
    height: 36px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--blue-100);
    margin-bottom: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cbd5e1;
}

/* Servicios */
.servicios {
    padding: 64px 0;
    background: var(--blue-50);
}

.servicios h2 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--blue-900);
    margin-bottom: 40px;
    font-weight: 600;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.servicio-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s ease;
}

.servicio-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.servicio-icon {
    color: var(--blue-500);
    margin-bottom: 16px;
}

.servicio-card h3 {
    font-size: 1.1rem;
    color: var(--blue-900);
    margin-bottom: 10px;
    font-weight: 600;
}

.servicio-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contacto */
.contacto {
    padding: 64px 0;
    text-align: center;
}

.contacto h2 {
    font-size: 1.5rem;
    color: var(--blue-900);
    margin-bottom: 32px;
    font-weight: 600;
}

.contacto-info {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-600);
    font-size: 1.05rem;
}

.contacto-item svg {
    color: var(--blue-500);
    flex-shrink: 0;
}

.contacto-item a {
    color: var(--blue-500);
    text-decoration: none;
    font-weight: 500;
}

.contacto-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 32px 0;
    background: var(--blue-900);
    color: var(--gray-400);
    text-align: center;
}

.coming-soon {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--blue-100);
}

.copyright {
    font-size: 0.85rem;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--blue-100);
}

/* Page Hero (subpages) */
.page-hero {
    padding: 56px 0 40px;
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.page-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Legal / Support Content */
.legal-content {
    padding: 48px 0 64px;
}

.legal-content .container {
    max-width: 800px;
}

.legal-date {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    font-style: italic;
}

.content-block {
    margin-bottom: 36px;
}

.content-block h2 {
    font-family: 'Karla', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--blue-50);
}

.content-block h3 {
    font-family: 'Karla', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--blue-900);
    margin-bottom: 8px;
}

.content-block p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 12px;
}

.content-block ul,
.content-block ol {
    margin: 12px 0 16px 24px;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.75;
}

.content-block li {
    margin-bottom: 8px;
}

.content-block a {
    color: var(--blue-500);
    text-decoration: none;
}

.content-block a:hover {
    text-decoration: underline;
}

.contact-highlight {
    background: var(--blue-50);
    border-left: 4px solid var(--blue-500);
    padding: 16px 20px;
    border-radius: 0 6px 6px 0;
    margin: 16px 0;
}

.contact-highlight p {
    margin-bottom: 4px;
    color: var(--blue-900);
}

.contact-highlight p:last-child {
    margin-bottom: 0;
}

/* FAQ Items */
.faq-item {
    background: var(--blue-50);
    padding: 20px 24px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.faq-item h3 {
    margin-bottom: 8px;
}

.faq-item p {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 56px 0 44px;
    }

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

    .tagline {
        font-size: 1rem;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contacto-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .page-hero {
        padding: 40px 0 32px;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

    .legal-content {
        padding: 32px 0 48px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}
