
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primario: #13420B;       /* Verde principal */
    --color-secundario: #f5f5f5;     /* Fondo claro */
    --color-texto: #000000;          /* Negro */
    --color-fondo: #FFFFFF;          /* Blanco */
}

/*Estilo base del cuerpo */

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--color-texto);
    background-color: var(--color-fondo);
    margin: 0;
    padding: 0;
}
                                                                              /* CABECERA */
.contacto-superior {
    background-color: var(--color-secundario);
    padding: 0.5rem 0;
    text-align: center;
}

/* Enlaces */

.contacto-superior a {
    text-decoration: none;
    color: var(--color-primario);
    font-weight: 400;
    transition: color 0.3s;
}

/* Efecto hover */

.contacto-superior a:hover,
.contacto-superior a:focus {
    color: var(--color-texto);
    text-decoration: underline;
}

/* Contenedor principal */

.barra-superior {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-secundario);
    padding: 0.5rem 2rem;
    width: 100%;
}

/* Izquierda */

.contacto-superior a {
    text-decoration: none;
    color: var(--color-primario);
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s;
}

/* Derecha */

.redes-sociales-header {
    display: flex;
    gap: 1rem;
}

/* Estilo enlaces RRSS */

.redes-sociales-header a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

/* Efecto hover RRSS */

.redes-sociales-header a:hover {
    transform: translateY(-2px);
}

                                                                            /* MENÚ PRINCIPAL */
.contenedor-header {
    padding: 1rem 2rem;
}

.contenedor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

/* Estilo para el logotipo */

.logo-titulo img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lista del menú principal */

.menu-principal ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

/* Enlaces del menú principal */

.menu-principal a {
    text-decoration: none;
    color: var(--color-primario);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Efecto hover menú */

.menu-principal a:hover,
.menu-principal a:focus {
    color: var(--color-secundario);
    background-color: var(--color-primario);
    outline: none;
}

                                                                                 /* SLIDER */
/* Contenedor principal del slider */

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 20px 0; /* Margen vertical */
}

.slider-inner {
    display: flex;
    transition: transform 1s ease-in-out;
}

/* Estilo del slider */

.slide {
    width: 100%;
    flex-shrink: 0;
}

/* Imágenes dentro del slider */

.slider-container img {
    width: 100%;
    height: auto;
    max-height: 500px; /* Altura máxima ajustable */
    object-fit: cover; /* Recorta imágenes manteniendo proporción */
}

/* Navegación */

input[type="radio"] {
    display: none;
}

/* Controles */

.control-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none; /* evita clics nos botóns que non están activos */
}

.control-buttons label {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    color: white;
    border-radius: 50%; /* Botones circulares */
    margin: 0 20px; /* Margen lateral */
    display: none;
    pointer-events: auto; 
}

/* Transición entre slides */

#slide1:checked ~ .slider-inner { transform: translateX(0%); }
#slide2:checked ~ .slider-inner { transform: translateX(-100%); }
#slide3:checked ~ .slider-inner { transform: translateX(-200%); }


#slide1:checked ~ .control-buttons label:nth-child(1),
#slide1:checked ~ .control-buttons label:nth-child(2) {
    display: block;
}

#slide2:checked ~ .control-buttons label:nth-child(3),
#slide2:checked ~ .control-buttons label:nth-child(4) {
    display: block;
}

#slide3:checked ~ .control-buttons label:nth-child(5),
#slide3:checked ~ .control-buttons label:nth-child(6) {
    display: block;
}


                                                                              /* HORARIO */
/* Contenedor del horario */

.horario-minimal-horizontal {
    font-family: 'Roboto', sans-serif;
    max-width: 100%;
    margin: 4rem auto;
    padding: 0 1rem;
}

/* Título del horario */

.horario-titulo {
    text-align: center;
    font-weight: 400;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #13420B;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dias-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.8rem;
    padding: 0.5rem 0;
}

/* Contenedor de los días */

.dia-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.dia-nombre {
    font-size: 1rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 0.3rem;
}

/* Nombre del día */

/* Horas del día */

.dia-horario {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

/* Estilo para días cerrados */

.pechado {
    color: #e74c3c;
    font-weight: 500;
}



/* Responsive para el horario */

@media (max-width: 768px) {
    .dias-wrapper {
        gap: 1.2rem;
    }
}

@media (max-width: 480px) {
    .dias-wrapper {
        gap: 0.8rem;
    }
    .dia-item {
        min-width: 50px;
    }
    .dia-nombre {
        font-size: 0.8rem;
    }
    .dia-horario {
        font-size: 0.75rem;
    }
}



                                                                              /* TEXTO 1 */
.texto-inicial {
    background-color: var(--color-secundario);
    padding: 3rem 1rem;
    text-align: center;
    color: var(--color-primario);
}

/* Contenedor del texto 1 */

.contedor-texto {
    max-width: 800px;
    margin: 0 auto;
}

/* Párrafos del texto 1 */

.texto-inicial p {
    font-size: 1.2rem;
    line-height: 1.8;
}

                                      
                                                                              /* TEXTO 2 */
.text-image-section {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Contenedor del texto 2 */

.text-content {
    flex: 1;
    padding-right: 20px;
}

/* Títulos */

.text-content h2,h1 {
    color: #13420B;
    font-size: 2rem;
    margin-bottom: 20px;
}
.text-content h2,h1 {
    color: #13420B;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative; /* Necesario para o ::after */
}

/* Línea debajo de títulos */

.text-content h2,h1::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #13420B;
    bottom: -10px;
    left: 0;
}


.text-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Contenedor de imagen */

.image-content {
    flex: 1;
}

/* Imágenes en secciones */

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Botón */

.cta-button {
    display: inline-block;
    background-color: #13420B;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: background-color 0.3s;
}

/* Efecto hover botón */

.cta-button:hover {
    background-color: #0d2e07;
}

/* Responsive */
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .text-content {
        padding-right: 0;
        order: 1;
    }
    
    .image-content {
        order: 2;
    }
    
    .text-content h2 {
        font-size: 1.6rem;
    }
}  


                                                                             /* TEXTO 4 */

.onde-estamos-section {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Roboto', sans-serif;
}

/* Contenedor de texto */

.texto-content {
    flex: 1;
    padding-right: 20px;
}

.texto-content h2 {
    color: #13420B;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
}

/* Línea debajo de títulos */

.texto-content h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #13420B;
    bottom: -10px;
    left: 0;
}

.texto-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Texto en negrita */

.texto-content strong {
    color: #13420B;
}

/* Contenedor de imagen */

.imagen-content {
    flex: 1;
    height: 400px; /* Altura fija añadida */
    overflow: hidden; /* Añadido para contener la imagen */
    border-radius: 8px; /* Movido aquí desde la imagen */
}

.imagen-content img {
    width: 100%;
    height: 100%; /* Añadido para ocupar todo el contenedor */
    object-fit: cover; /* Añadido para recortar la imagen proporcionalmente */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}


/* Responsive */
@media (max-width: 768px) {
    .onde-estamos-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .texto-content {
        padding-right: 0;
        order: 1;
    }
    
    .imagen-content {
        order: 2;
        height: 300px; /* Altura reducida en móvil */
        width: 100%; /* Aseguramos ancho completo */
    }
    
    .texto-content h2 {
        font-size: 1.6rem;
    }
}




                                                                             /* MAPA */

.map {
  padding: 2rem 1rem;
  background-color: #f5f5f5; /* opcional: fondo claro para la sección */
}

/* Contenedor del mapa */

.map-container {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Iframe del mapa */

.map-container iframe {
  width: 100%;
  max-width: 1200px;
  height: 450px;
  border: 0;
  border-radius: 10px; /* opcional: esquinas redondeadas */
  box-shadow: 0 4px 20px rgba(0,0,0,0.1); /* opcional: sombra suave */
}



                                                                             /* VÍDEO DE YOUTUBE */
.video-promo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding: 10px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif; /* Asegura consistencia tipográfica */
}

/* Encabezado del vídeo */

.video-header h2 {
    color: #13420B; /* Color corporativo */
    font-size: 2.2rem;
    margin-bottom: 60px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.video-header h2 {
    color: #13420B;
    font-size: 2.2rem;
    margin-bottom: 60px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

/* Línea debajo de títulos */

.video-header h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #13420B;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Contenedor del vídeo */

.video-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    width: 100%;
}

/* Iframe del vídeo */

.video-wrapper iframe {
    width: 100%;
    max-width: 800px;
    height: calc(100vw * 0.5); /* Ajustado a proporción 800x400 (2:1) */
    max-height: 400px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Subtítulo del vídeo */

.video-subtitle {
    color: #13420B;
    font-size: 1.4rem;
    margin-top: 40px;
    font-weight: 400;
    font-style: italic;
}

/* Versión responsive */
@media (max-width: 768px) {
    .video-promo {
        padding: 40px 20px;
        min-height: auto;
    }
    
    .video-header h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .video-wrapper iframe {
        height: calc(100vw * 0.5625); /* Vuelve a 16:9 en móvil si prefieres */
    }
    
    .video-subtitle {
        font-size: 1.2rem;
        margin-top: 20px;
    }
}
                                                                               /* GALERÍA */
/* Contenedor de la galería */

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Elementos de la galería */

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1; /* Cuadradas */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

/* Efecto hover de la galería */

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

/* Efecto hover para imágenes */

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Overlay */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 42, 42, 0.4); /* Verde semitransparente */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Texto en overlay */

.overlay-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    padding: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
}

                                                                                    /* GALERÍA SMALL  */


/* Galería pequeña */

.gallery-container-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 20px;
}

/* Responsive para la galería pequeña */
@media (max-width: 768px) {
    .gallery-container-small {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-container-small {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-container-small .gallery-item:nth-child(3) {
        grid-column: span 2;
    }
}




                                                                                   /* FORMULARIO */

/* Estilos sección contacto */

.contacto-section {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: 'Roboto', sans-serif;
}

/* Contenedor del formulario */

.contacto-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Título del formulario */

.contacto-titulo {
    color: #13420B;
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Línea debajo de títulos */

.contacto-titulo::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #13420B;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Subtítulo del formulario */

.contacto-subtitulo {
    color: #555;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Formulario */

.contacto-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #13420B;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #13420B;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Efecto hover para botón */

.submit-btn {
    background-color: #13420B;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Efecto hover para botón */

.submit-btn:hover {
    background-color: #0e3308;
}

/* Responsive */
@media (max-width: 768px) {
    .contacto-section {
        padding: 60px 15px;
    }
    
    .contacto-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .contacto-titulo {
        font-size: 1.8rem;
    }
    
    .contacto-form {
        padding: 25px 20px;
    }
}



                                                                                   /* COOKIES */

 .cookies-section {
            max-width: 1000px;
            margin: 4rem auto;
            padding: 0 2rem;
            font-family: 'Roboto', sans-serif;
            color: #333;
        }

/* Títulos principales */
        
        .cookies-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .cookies-header h1 {
            color: #13420B;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

/* Línea debajo de títulos */

        .cookies-header h1::after {
            content: "";
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: #13420B;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .cookies-content {
            background: white;
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .cookies-content h2 {
            color: #13420B;
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        
        .cookies-content h3 {
            color: #13420B;
            font-size: 1.2rem;
            margin: 1.5rem 0 0.8rem;
        }
        
        .cookies-content p, 
        .cookies-content ul {
            margin-bottom: 1.2rem;
            line-height: 1.8;
        }
        
        .cookies-content ul {
            padding-left: 1.5rem;
        }
        
        .cookies-content a {
            color: #13420B;
            text-decoration: underline;
        }
      
/* Efecto hover para enlaces */

        .cookies-content a:hover {
            text-decoration: none;
        }
        
        @media (max-width: 768px) {
            .cookies-content {
                padding: 2rem;
            }
            
            .cookies-header h1 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .cookies-content {
                padding: 1.5rem;
            }
        }

                                                                                 /* PRIVACIDAD */

        .privacidad-section {
            max-width: 1000px;
            margin: 4rem auto;
            padding: 0 2rem;
            font-family: 'Roboto', sans-serif;
            color: #333;
        }
        
        .privacidad-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .privacidad-header h1 {
            color: #13420B;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .privacidad-header h1::after {
            content: "";
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: #13420B;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .privacidad-content {
            background: white;
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .privacidad-content h2 {
            color: #13420B;
            font-size: 1.5rem;
            margin: 2.5rem 0 1.2rem;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 0.5rem;
        }
        
        .privacidad-content h3 {
            color: #13420B;
            font-size: 1.3rem;
            margin: 2rem 0 1rem;
        }
        
        .privacidad-content h4 {
            color: #13420B;
            font-size: 1.1rem;
            margin: 1.5rem 0 0.8rem;
            font-weight: 500;
        }
        
        .privacidad-content p, 
        .privacidad-content ul {
            margin-bottom: 1.3rem;
            line-height: 1.8;
        }
        
        .privacidad-content ul {
            padding-left: 1.8rem;
        }
        
        .privacidad-content li {
            margin-bottom: 0.7rem;
        }
        
        .privacidad-content a {
            color: #13420B;
            text-decoration: underline;
            font-weight: 500;
        }
        
        .privacidad-content a:hover {
            text-decoration: none;
        }
        
        .highlight-box {
            background-color: #f8f9fa;
            border-left: 4px solid #13420B;
            padding: 1.2rem;
            margin: 1.5rem 0;
        }
        
        @media (max-width: 768px) {
            .privacidad-content {
                padding: 2rem;
            }
            
            .privacidad-header h1 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .privacidad-content {
                padding: 1.5rem;
            }
            
            .privacidad-content h2 {
                font-size: 1.3rem;
            }
        }


                                                                               /* PIE  DE PÁGINA */
.pie-pagina {
    background-color: var(--color-secundario);
    color: var(--color-texto);
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 2rem;
}

.redes-sociales-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.redes-sociales-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

/* Efecto hover para RRSS */

.redes-sociales-footer a:hover,
.redes-sociales-footer a:focus {
    background-color: var(--color-primario);
    transform: translateY(-3px);
}

.redes-sociales-footer svg {
    transition: fill 0.3s;
}

.redes-sociales-footer a:hover svg,
.redes-sociales-footer a:focus svg {
    fill: white;
}
                                                                                /* ENLACES FOOTER */

.enlaces-footer {
    margin-bottom: 1rem;
}

.enlaces-footer a {
    color: var(--color-texto);
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

/* Efecto hover para enlaces */ 

.enlaces-footer a:hover,
.enlaces-footer a:focus {
    color: var(--color-primario);
    text-decoration: underline;
}

.copyright p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.9;
}

                                                                                  /* RESPONSIVE */
@media (max-width: 768px) {
    .contenedor-header {
        flex-direction: column;
        padding: 1rem;
    }
    
    .menu-principal ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .slider-controls {
        display: none;
    }
    
    .slider-dots {
        bottom: 0.5rem;
    }
}

                                                                                   /* ERROR 404 */

/* Estilo para error 404 */

.contenedor-error {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    text-align: center;
}

.error-404 {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.error-404 h1 {
    color: #13420B;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.error-404 p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.imagen-error {
    margin: 2rem 0;
}

.imagen-error img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.enlaces-error {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.enlaces-error a {
    padding: 0.8rem 1.5rem;
    background-color: #13420B;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.enlaces-error a:hover {
    background-color: #1a5a0f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


                                                                             /* RESPONSIVE GENERAL */

/* Responsive */
@media (max-width: 768px) {
    .error-404 {
        padding: 2rem 1rem;
    }
    
    .error-404 h1 {
        font-size: 2rem;
    }
    
    .error-404 p {
        font-size: 1rem;
    }
    
    .enlaces-error {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Corrección de alineación para checkbox legal */
.form-group label input[type="checkbox"] {
    vertical-align: middle;
    margin-right: 8px;
    transform: translateY(-1px);
}
