/* Reset y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}




/* HEADER Y NAVEGACIÓN */
header {
    background: rgba(0, 0, 0, 0.7); 
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;

}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo h1 {
    font-size: 2rem;
    color: white;
    font-weight: normal;
    text-transform: uppercase;
}

.menu {
    display: flex;
    list-style: none;
    gap: 3rem; 

}


.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.menu a:hover {
    color: #cedb10;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #FFD700;
}

/* Texto de misión */
.mission-text {
    margin-top: 60px;
}

.mission-text h2 {
    font-size: 2rem;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.mission-text p {
    font-size: 1.3rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    margin: 0;
}

/* HERO SECTION - ESTILO EXACTO COMO LA IMAGEN */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('imagenes/pizza-fondo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white (255, 255, 255);
}


.hero-content h2 {
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* No footer para que se parezca más a la imagen */
footer {
    display: none;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .simple-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .simple-menu a {
        font-size: 1rem;
    }
    
    .mission-text h2 {
        font-size: 1.5rem;
    }
    
    .mission-text p {
        font-size: 1.1rem;
    }
}

/* HERO SECTION - INDEX */
.hero {
    background: url('imagenes/pizza-fondo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgb(0, 0, 0);
    position: relative;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* BLOG STYLES */
.blog-main {
    max-width: 1200px;
    margin: 100px auto 2rem;
    padding: 0 2rem;
}

.blog-post {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #8B4513;
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid #8B4513;
}

.author-details h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.date {
    color: #666;
    font-style: italic;
}

.blog-post h2 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-align: center;
}

.blog-content {
    line-height: 1.8;
}

.blog-image {
    max-width: 400px;
    border-radius: 10px;
    margin: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.float-left {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.blog-content p {
    margin-bottom: 1rem;
    text-align: justify;
}
.blog-comiendo{

    text-align: center;
}



/* GALLERY STYLES */
.gallery-main {
    max-width: 1200px;
    margin: 100px auto 2rem;
    padding: 0 2rem;
    text-align: center;
}

.gallery-main h2 {
    color: #8B4513;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(0.7) sepia(0.5);
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* VIDEOS STYLES */
.videos-main {
    max-width: 1200px;
    margin: 100px auto 2rem;
    padding: 0 2rem;
}

.videos-main h2 {
    color: #8B4513;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.video-description {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #666;
}

.videos-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.video-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1.5rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.video-item h3 {
    color: #8B4513;
    margin-bottom: 20rem;
}

.video-item p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* SOCIAL SECTIONS */
.social-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #111110, #141312);
    border-radius: px;
    color: white;
}

.social-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: white;
    color: #8B4513;
    transform: translateY(-3px);
}

.social-links i {
    margin-right: 0.5rem;
}

/* FOOTER */
footer {
    background: #000000;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .menu {
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .gallery-container {
        gap: 1rem;
    }
    
    .gallery-item {
        width: 100%;
        max-width: 300px;
    }
    
    .blog-image.float-left {
        float: none;
        margin: 1rem auto;
        display: block;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Reinicio y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* ENCABEZADO Y NAVEGACIÓN */
header {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo h1 {
    font-size: 2rem;
    color: white;
    font-weight: normal;
    text-transform: uppercase;
}

.menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.menu a:hover {
    color: #FFD700;
}

.iconos-sociales {
    display: flex;
    gap: 1rem;
}

.iconos-sociales a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.iconos-sociales a:hover {
    color: #FFD700;
}

/* SECCIÓN HERO */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('imagenes/pizza-fondo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contenido-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contenido-hero p {
    font-size: 1.5rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* ESTILOS PARA BLOG */
.principal-blog {
    max-width: 1200px;
    margin: 100px auto 2rem;
    padding: 0 2rem;
}

.entrada-blog {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-autor {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #8B4513;
}

.imagen-autor {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid #8B4513;
}

.detalles-autor h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.fecha {
    color: #666;
    font-style: italic;
}

.entrada-blog h2 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-align: center;
}

.contenido-blog {
    line-height: 1.8;
}

.imagen-blog {
    max-width: 400px;
    border-radius: 10px;
    margin: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.flotar-izquierda {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.contenido-blog p {
    margin-bottom: 1rem;
    text-align: justify;
}

.blog-comiendo {
    text-align: center;
}

/* ESTILOS PARA GALERÍA */
.principal-galeria {
    max-width: 1200px;
    margin: 100px auto 2rem;
    padding: 0 2rem;
    text-align: center;
}

.principal-galeria h2 {
    color: #8B4513;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.contenedor-galeria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.item-galeria {
    position: relative;
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.item-galeria:hover {
    transform: scale(1.05);
}

.item-galeria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.item-galeria:hover img {
    filter: brightness(0.7);
}

.superposicion {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.item-galeria:hover .superposicion {
    opacity: 1;
}

/* ESTILOS PARA VÍDEOS */
.principal-videos {
    max-width: 1200px;
    margin: 100px auto 2rem;
    padding: 0 2rem;
}

.principal-videos h2 {
    color: #8B4513;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.descripcion-video {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #666;
}

.contenedor-videos {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.item-video {
    background: rgb(255, 255, 255);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contenedor-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 1.5rem;
}

.contenedor-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.item-video h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.item-video p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* SECCIONES SOCIALES */
.seccion-social {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #111110, #141312);
    border-radius: 10px;
    color: white;
}

.seccion-social h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.enlaces-sociales {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.enlaces-sociales a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.enlaces-sociales a:hover {
    background-color: rgb(0, 0, 0);
    color: #000000;
    transform: translateY(-3px);
}

.enlaces-sociales i {
    margin-right: 0.5rem;
}

/* PIE DE PÁGINA */
footer {
    background: #000000;
    color: rgb(189, 91, 26);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* ESTILOS PARA CONTACTOS */
.principal-contactos {
    max-width: 1200px;
    margin: 100px auto 2rem;
    padding: 0 2rem;
}

.contenedor-contactos {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.informacion-contacto, .seccion-formulario, .seccion-mapa {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.informacion-contacto h2, .seccion-formulario h2, .seccion-mapa h2 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 2px solid #8B4513;
    padding-bottom: 0.5rem;
}

/* Tabla de contactos */
.tabla-contacto {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
}

.tabla-contacto td {
    padding: 0.5rem;
    vertical-align: top;
    border-bottom: 1px solid #ddd;
}

.tabla-contacto td:first-child {
    width: 120px;
    font-weight: bold;
}

.detalles-contacto {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 5px;
}

.horario-atencion {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.horario-atencion h3 {
    margin-bottom: 1rem;
    color: white;
}

/* Formulario */
.formulario-contacto {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.grupo-formulario {
    display: flex;
    flex-direction: column;
}

.grupo-formulario label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.grupo-formulario input,
.grupo-formulario textarea {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.grupo-formulario input:focus,
.grupo-formulario textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.formulario-obligatorio {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.boton-enviar {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.boton-enviar:hover {
    transform: translateY(-2px);
}

/* Mapa */
.contenedor-mapa {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-mapa {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    border-left: 4px solid #8B4513;
}

.contenedor-mapa-iframe {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);

}

.referencia-mapa {
    background: #f1f1f1;
    padding: 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

.credito-mapa {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #666;
}

/* DISEÑO RESPONSIVE */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .menu {
        gap: 1rem;
    }
    
    .contenido-hero h2 {
        font-size: 2rem;
    }
    
    .contenido-hero p {
        font-size: 1.2rem;
    }
    
    .contenedor-galeria {
        gap: 1rem;
    }
    
    .item-galeria {
        width: 100%;
        max-width: 300px;
    }
    
    .imagen-blog.flotar-izquierda {
        float: none;
        margin: 1rem auto;
        display: block;
    }
    
    .enlaces-sociales {
        flex-direction: column;
        gap: 1rem;
    }
    
    .principal-contactos {
        margin: 120px auto 1rem;
        padding: 0 1rem;
    }
    
    .informacion-contacto, .seccion-formulario, .seccion-mapa {
        padding: 1.5rem;
    }
    
    .tabla-contacto td:first-child {
        width: 100px;
    }
}

/* ESTILOS ESPECÍFICOS PARA LA TABLA DE CONTACTOS */
.tabla-contacto {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
}

.tabla-contacto td {
    padding: 0.5rem;
    vertical-align: top;
    border-bottom: 1px solid #ddd;
}

.tabla-contacto td:first-child {
    width: 120px;
    font-weight: bold;
}

/* RESET PARA CONTACTOS */
.principal-contactos h2 {
    color: #914a10;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 2px solid #8B4513;
    padding-bottom: 0.5rem;
}

.informacion-contacto, .seccion-formulario, .seccion-mapa {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

/* EL MISMO TAMAÑO DE ENCABEZADOS EN TODAS LAS PÁGINAS */
header {
    padding: 0.3rem 0 !important;
    height: 60px !important;
}

nav {
    padding: 0 1rem !important;
    height: 100% !important;
    align-items: center !important;
}

.logo h1 {
    font-size: 1.3rem !important;
    margin: 0 !important;
}

.menu {
    margin: 0 1rem !important;
}

.menu a {
    font-size: 0.8rem !important;
    padding: 0.3rem 0.6rem !important;
}

.social-icons {
    margin: 0 !important;
}

.social-icons a {
    font-size: 0.9rem !important;
}

/* ESTILOS PARA NOSOTROS.HTML CON GRID AREAS */
.nosotros-main {
    max-width: 1200px;
    margin: 80px auto 2rem;
    padding: 0 2rem;
}

.nosotros-contenedor {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* GRID AREAS PRINCIPAL */
.grid-nosotros {
    display: grid;
    grid-template-areas: 
        "titulo titulo"
        "imagen contenido"
        "mision vision";
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto 1fr auto;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.grid-titulo {
    grid-area: titulo;
    text-align: center;
}

.grid-titulo h1 {
    color: #8B4513;
    font-size: 2.5rem;
    margin-bottom: 0;
    border-bottom: 3px solid #8B4513;
    padding-bottom: 0.5rem;
}

.grid-imagen {
    grid-area: imagen;
}

.grid-imagen img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.grid-contenido {
    grid-area: contenido;
}

.grid-contenido h2 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.columnas-texto {
    column-count: 2;
    column-gap: 2rem;
    text-align: justify;
    line-height: 1.6;
}

.columnas-texto p {
    margin-bottom: 1rem;
}

.grid-mision {
    grid-area: mision;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.grid-vision {
    grid-area: vision;
    background: linear-gradient(135deg, #A0522D, #8B4513);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.grid-mision h3, .grid-vision h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* SECCIÓN DE VALORES */
.valores-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}



.grid-valores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.valor-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.valor-item:hover {
    transform: translateY(-5px);
}

.valor-item i {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.valor-item h4 {
    color: #8B4513;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.valor-item p {
    color: #666;
    line-height: 1.5;
}

/* RESPONSIVE PARA NOSOTROS */
@media (max-width: 768px) {
    .grid-nosotros {
        grid-template-areas: 
            "titulo"
            "imagen"
            "contenido"
            "mision"
            "vision";
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .columnas-texto {
        column-count: 1;
    }
    
    .grid-imagen img {
        height: 200px;
    }
    
    
    .nosotros-main {
        margin: 90px auto 1rem;
        padding: 0 1rem;
    }
}
