/* CSS Variables para colores y estilos base (Estilo Rústico y Rural) */
:root {
    /* Paleta de Colores Rústica */
    --clr-rustic-green: #5C715E;      /* Verde oliva apagado / campo */
    --clr-rustic-green-dark: #425243; /* Verde más oscuro */
    
    --clr-earth-brown: #8D6E63;       /* Marrón tierra suave */
    --clr-wood-dark: #4A3B32;         /* Marrón madera oscuro */
    
    --clr-bg: #FDFBF7;                /* Blanco roto / Crema muy suave */
    --clr-bg-alt: #F4EFE6;            /* Beige claro para fondos secundarios */
    
    --clr-text-main: #3E3832;         /* Texto principal oscuro, tono cálido */
    --clr-text-light: #6D635B;        /* Texto secundario */
    
    --clr-white: #FFFFFF;
    
    /* Tipografía */
    --font-main: 'Outfit', sans-serif;
    
    /* Espaciados y Radios */
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease-in-out;
    --shadow-sm: 0 4px 6px rgba(74, 59, 50, 0.05);
    --shadow-md: 0 10px 20px rgba(74, 59, 50, 0.08);
}

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Tipografía Básica */
h1, h2, h3, h4 {
    color: var(--clr-wood-dark);
    line-height: 1.2;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    color: var(--clr-text-light);
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1.5rem;
}

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

/* Botones */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--clr-rustic-green);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: var(--clr-rustic-green-dark);
    transform: translateY(-2px);
    color: var(--clr-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-wood-dark);
    border-color: var(--clr-wood-dark);
}

.btn-outline:hover {
    background-color: var(--clr-wood-dark);
    color: var(--clr-white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 5%;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-white);
    transition: var(--transition);
}

.navbar.scrolled .logo {
    color: var(--clr-wood-dark);
}

.logo span {
    font-weight: 300;
    margin-left: 5px;
}

.navbar nav > ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar nav > ul > li > a {
    font-weight: 600;
    color: var(--clr-white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar.scrolled nav > ul > li > a {
    color: var(--clr-text-main);
}

.navbar nav > ul > li > a:hover {
    color: var(--clr-earth-brown) !important;
}

/* Hero Section con Imagen */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--clr-white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Efecto Parallax */
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Overlay cálido y oscuro para resaltar el texto */
    background: rgba(46, 36, 30, 0.4);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUP 1s ease-out forwards;
}

@keyframes fadeInUP {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--clr-white);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero p {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Sections Base */
.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--clr-bg-alt);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Intro Garraitz */
.intro-garraitz {
    padding: 6rem 0;
}

.garraitz-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--clr-text-main);
    line-height: 1.8;
}

/* Sección Vídeo */
.video-section {
    padding: 6rem 0 8rem;
}

.parallax-bg-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.parallax-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 36, 30, 0.75);
    z-index: 0;
}

.parallax-bg-section > * {
    position: relative;
    z-index: 1;
}

.parallax-bg-section .section-title {
    color: var(--clr-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: #000;
    aspect-ratio: 16 / 9;
    position: relative;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Animaciones de Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* La Casa - Diseño Asimétrico tipo Revista */
.house-info {
    padding: 6rem 0;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.feature-card.reverse {
    flex-direction: row-reverse;
}

.carousel-wrapper {
    position: relative;
    width: 60%;
    z-index: 1;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 30px rgba(74, 59, 50, 0.15);
    overflow: hidden;
}

.feature-card > img {
    width: 60%;
    aspect-ratio: 699 / 446;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 30px rgba(74, 59, 50, 0.15);
    z-index: 1;
}

.feature-card .gallery-carousel {
    width: 100%;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    /* scroll-behavior: smooth; Eliminado para evitar conflictos con auto-scroll en movil */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(253, 251, 247, 0.85);
    color: var(--clr-wood-dark);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    backdrop-filter: blur(4px);
}

.carousel-btn:hover {
    background: var(--clr-white);
    color: var(--clr-earth-brown);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.feature-card .gallery-carousel::-webkit-scrollbar {
    display: none;
}

.feature-card .gallery-carousel img {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.feature-text {
    width: 50%;
    background: var(--clr-white);
    padding: 3.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(74, 59, 50, 0.12);
    z-index: 2;
    margin-left: -10%; /* Superposición de la caja de texto sobre la foto */
    position: relative;
}

.feature-card.reverse .feature-text {
    margin-left: 0;
    margin-right: -10%; /* Superposición en el lado inverso */
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--clr-wood-dark);
}

.feature-text p {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Actividades */
.activities-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.activity-card {
    border-radius: var(--radius-md);
    padding: 4rem 2rem;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    color: var(--clr-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Tarjetas Simples Horizontales */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.simple-card {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(74, 59, 50, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.simple-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(74, 59, 50, 0.15);
}

.simple-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.simple-card-body {
    padding: 2rem;
    flex-grow: 1;
}

.simple-card-body h3 {
    color: var(--clr-wood-dark);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(62, 56, 50, 0.6); /* Overlay oscuro rústico */
    z-index: 1;
    transition: var(--transition);
}

.activity-card:hover::before {
    background-color: rgba(62, 56, 50, 0.75);
}

.activity-card > * {
    position: relative;
    z-index: 2;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.activity-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--clr-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.activity-card p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    font-size: 1.1rem;
    font-weight: 300;
}

/* Footer */
.footer {
    background-color: var(--clr-wood-dark);
    color: var(--clr-white);
    padding: 4rem 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-info {
    max-width: 400px;
}

.footer-info h3 {
    color: var(--clr-bg-alt);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact h4 {
    color: var(--clr-bg-alt);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.25);
    text-align: center;
    padding: 1.5rem 0;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsividad */
@media (max-width: 768px) {
    .features-grid {
        gap: 3rem !important;
    }

    .feature-card, .feature-card.reverse {
        flex-direction: column;
        gap: 0 !important;
        background: var(--clr-white);
        box-shadow: var(--shadow-sm);
        border-radius: var(--radius-md);
        overflow: hidden;
    }
    
    .carousel-wrapper {
        width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    
    .feature-card > img {
        width: 100% !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    
    .feature-text {
        width: 100% !important;
        margin: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 2rem 1.5rem 4rem !important; /* Espacio extra abajo */
        text-align: center !important;
    }
    
    .feature-card.reverse .feature-text {
        margin: 0 !important; /* Eliminar margenes negativos */
    }
    
    .feature-text p, .feature-text h3 {
        text-align: center !important; /* Forzar centrado */
    }
    
    .navbar nav ul {
        display: none;
    }
}

/* --- Masonry Gallery --- */
.masonry-gallery {
    column-count: 3;
    column-gap: 1.5rem;
    padding: 2rem 0;
}

@media (max-width: 1024px) {
    .masonry-gallery { column-count: 2; }
}

@media (max-width: 600px) {
    .masonry-gallery { column-count: 1; }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: inline-block; /* Crucial bugfix para evitar desaparición de columnas en iOS/Safari Móvil */
    width: 100%;
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.masonry-item:hover img {
    transform: scale(1.05);
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--clr-earth-brown);
}

/* --- Optimizacion Movil (100% Responsive) --- */
@media (max-width: 900px) {
    .collage-wrapper {
        width: 100% !important;
        padding: 1rem 0 !important;
    }
    .collage-wrapper {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }
    .collage-wrapper img {
        grid-row: auto !important;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px; /* Escala toda la tipografía de rem para móvil */
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }

    .hero-content img {
        width: 80% !important;
        max-width: 400px !important;
    }

    /* Navbar Mobile */
    .menu-toggle {
        display: block !important;
        font-size: 2rem;
        color: var(--clr-wood-dark);
        cursor: pointer;
        z-index: 1001;
    }

    .navbar nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--clr-white);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .navbar nav.active {
        right: 0;
    }

    .navbar nav > ul {
        display: flex !important;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .navbar nav > ul > li > a {
        color: var(--clr-wood-dark);
        font-size: 1.5rem;
    }
    
    .carousel-wrapper {
        width: 100%;
        margin: 0;
    }
}
/* --- Language Dropdown --- */
.lang-dropdown {
    position: relative;
}
.lang-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--clr-white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0;
    min-width: 150px;
    display: none;
    flex-direction: column;
    z-index: 1000;
}
.lang-dropdown:hover .dropdown-menu {
    display: flex;
}
.dropdown-menu li {
    margin: 0;
}
.dropdown-menu a {
    color: var(--clr-wood-dark) !important;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    transition: background 0.3s ease;
    white-space: nowrap;
}
.dropdown-menu a:hover, .dropdown-menu a.active {
    background: var(--clr-bg-alt);
}
.lang-dropdown .dropdown-menu.show {
    display: flex !important;
}
@media (max-width: 768px) {
    .lang-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none; /* Changed from flex to hide by default on mobile */
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        background: transparent;
        padding: 1rem 0;
    }
    .hero {
        height: auto !important;
        min-height: 50vh !important;
        padding: 120px 0 60px !important;
    }
    .hero-bg, .parallax-bg-section {
        background-attachment: initial !important; /* Corrige hiper-ampliacion en iOS */
        background-position: center !important;
    }
}

/* --- Gastronomy Page Styling --- */
.gastro-card {
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    align-items: stretch !important;
}

.gastro-collage {
    width: 55%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 220px 220px;
    gap: 15px;
}

.gastro-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.gastro-collage img.primary {
    grid-row: 1 / 3;
}

.gastro-text {
    width: 45%;
    padding: 2rem 0 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gastro-text h3 {
    color: var(--clr-earth-brown);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gastro-text .garraitz-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.gastro-text .garraitz-text.last {
    margin-bottom: 2.5rem;
}

.gastro-btn-trip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #34e0a1;
    border-color: #34e0a1;
    color: #000;
    font-weight: 700;
    padding: 1.1rem 2rem;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(52, 224, 161, 0.3);
}

/* --- Reservation Button --- */
.btn-reserve {
    background-color: var(--clr-rustic-green) !important;
    color: var(--clr-white) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 40px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: 2px solid var(--clr-rustic-green) !important;
    transition: all 0.3s ease !important;
}

.btn-reserve:hover {
    background-color: var(--clr-rustic-green-dark) !important;
    border-color: var(--clr-rustic-green-dark) !important;
    color: var(--clr-white) !important;
    transform: translateY(-2px);
}

/* Gastronomy Call to Action Banner */
.gastro-cta {
    background-color: var(--clr-wood-dark);
    color: var(--clr-white);
    padding: 3.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 15px 35px rgba(74, 59, 50, 0.15);
    margin: 3rem 0 1rem;
}

.gastro-cta h3 {
    color: var(--clr-bg-alt);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-main);
}

.gastro-cta p {
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.gastro-cta .btn {
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    padding: 1rem 2.5rem;
}

@media (max-width: 900px) {
    .gastro-card {
        flex-direction: column !important;
    }
    .gastro-collage, .gastro-text {
        width: 100% !important;
        padding: 1rem 0 !important;
    }
    .gastro-collage {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 10px;
    }
    .gastro-collage img {
        grid-row: auto !important;
        aspect-ratio: 16/9;
        height: auto;
    }
    .gastro-cta {
        padding: 2.5rem 1.5rem !important;
        margin: 2rem 0 0.5rem !important;
    }
    .gastro-cta h3 {
        font-size: 1.6rem !important;
    }
    .gastro-cta p {
        font-size: 1.05rem !important;
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 600px) {
    .activity-card {
        min-width: 100%;
        padding: 3rem 1.5rem;
    }
    .activity-card h3 {
        font-size: 1.8rem;
    }
}

/* Forzar Integracion de Tarjetas de Instalaciones en Movil */
@media (max-width: 768px) {
    .feature-card .gallery-carousel img {
        border-radius: 0 !important; /* Elimina borde inferior de la foto para pegarse al texto */
    }
    .feature-text {
        padding: 2rem 1.5rem 4rem !important; /* Asegura buen margen abajo */
        text-align: center !important; /* Fuerza centrado en toda la caja */
        width: 100% !important;
        background: var(--clr-white) !important;
    }
    .feature-text p, .feature-text h3 {
        text-align: center !important; /* Fuerza centrado especifico en texto */
    }
    .feature-card.reverse .feature-text {
        margin: 0 !important;
    }
    
    /* Centrado global de todos los textos en movil a peticion del usuario */
    h1, h2, h3, h4, p, .garraitz-text, .section-title {
        text-align: center !important;
    }
}
