/* TIPOGRAFÍAS */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #F2F2F2;
    color: #222;
}

/* HEADER */
.header {
    background-color: #0A2A43;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
}

.nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
}

.nav a:hover {
    color: #D4E4F2;
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    padding-top: 120px;
    background: linear-gradient(
        rgba(10,42,67,0.05) 0%,
        rgba(10,42,67,0.15) 30%,
        rgba(10,42,67,0.30) 100%
    ), url('img/hero.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #1A4D7A;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    background-color: white;
    color: #0A2A43;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 10px;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.85;
}

/* SERVICIOS */
.servicios {
    padding: 80px 40px;
    text-align: center;
}

.servicios h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 40px;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: left;
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 10px;
}

/* MARKETPLACE */
.marketplace {
    background-color: #0A2A43;
    color: white;
    text-align: center;
    padding: 80px 40px;
}

.marketplace h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
}

.marketplace p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* FOOTER */
.footer {
    background-color: #0A2A43;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }
}
