/* Importar una fuente similar a la de la imagen */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: #1a1a1a;
    
    
}
input, select, button { 
    padding: 10px; 
    margin: 5px; 
    width: 300px; 
    
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 2px;
}

/* Header Estilo Imagen */
header {
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
}

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

.logo {
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    color: #000;
}

.nav-link {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: #000;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 14px;
    margin: 30px 0 10px 0;
}

.breadcrumbs a {
    color: #0073aa;
    text-decoration: none;
}

/* Títulos */
h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
}

h2.centered-title {
    font-size: 36px;
    text-align: center;
    margin: 60px 0 30px 0;
    font-weight: 700;
}

.intro-text {
    font-size: 18px;
    color: #333;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Grid de imágenes (opcional) */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.image-grid img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}