/* Variables para cambiar colores rápido */
:root {
    --amarillo-pastel: #FFEE8C;
    --ocre-boton: #D4A373;
    --texto-oscuro: #333333;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--texto-oscuro);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Estilo del Logo */
.logo-container {
    display: flex;
    flex-direction: column; /* Rectángulo arriba, texto abajo */
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 150px; /* Ajustá según tu dibujo lineal */
    margin-bottom: 8px; /* El "aire" que hablamos */
}

.logo-text {
    font-weight: 800; /* Extra Bold */
    font-size: 1.2rem;
    color: var(--texto-oscuro);
    letter-spacing: -1px;
}

/* Navegación */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: var(--texto-oscuro);
    font-weight: 400;
    transition: 0.3s;
}

.main-nav a:hover {
    color: var(--ocre-boton);
}

.btn-contacto {
    background-color: var(--amarillo-pastel);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 800 !important;
}

/* Fuerza a que los slides se alineen horizontalmente */
.swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
    width: 100%;
    height: 100%;
}

/* Oculta lo que sobra para que no aparezca el scroll infinito hacia abajo */
.swiper {
    overflow: hidden !important;
    position: relative;
    height: 80vh; /* O la altura que desees */
    width: 100%;
}

.swiper-slide {
    background-size: cover; /* Evita que la imagen se estire "como un chicle" */
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100% !important; /* Fuerza el ancho total */
    flex-shrink: 0;         /* Evita que se amontonen */
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* Mantiene la proporción sin estirar */
}

/* El filtro ocre para que el texto se lea bien */
.overlay-slider {
    width: 100%;
    height: 100%;
    background: rgba(212, 163, 115, 0.4); /* Ocre con 40% de opacidad */
    display: flex;
    align-items: center;
    color: white;
}

.title-slider {
    font-size: 3.5rem;
    font-weight: 800; /* Montserrat Extra Bold */
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.text-slider {
    font-size: 1.5rem;
    font-weight: 300; /* Montserrat Light */
    max-width: 600px;
}

/* Color de las flechas y puntos */
:root {
    --swiper-theme-color: #FFEE8C; 
}

html, body {
    height: 100%;
    margin: 0;
}