body {
    font-family: sans;
    background-color: #fff; /* color de fondo */
    color: #000;
}

.contenedor{
    width: auto;
    margin: auto;   
    justify-content: center;
}

header {
    display: flex;
    justify-content: center; /* Centra todo horizontalmente */
    align-items: center;
    padding: 0px;
}

#linea {
    width: 90%;
    height: 0.5px;
    display: flex;
    padding: 0.5px;
    background-color: #dcd8d5;
    border-radius: 20px;
}

/* Contenedor interno */
.menu-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Espacio entre logo y menú */
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

/* Menú */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 25px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #555;
}

/*Sección*/
.hero {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
}

.hero-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    border: 1px solid #000;
    padding: 5px;
    background: #fff;
    text-align: left;
}

.hero-text {
    flex: 1;
    padding-right: 6%;
}

.hero-text h1,
.hero-text p,
.btn-hero {
    padding-left: 20px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 600;
    color: #000;
    margin-top: 80px;
    margin-bottom: 30px;
    white-space: nowrap;
}

.hero-text p {
    font-size: 2rem;
    margin-bottom: 50px;
}

.btn-hero {
    display: inline-block;
    background: #000;
    padding: 10px 40px;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-family: Arial;
    font-size: 1.2rem;
    transition: .3s;
    margin-left: 150px;
}

.btn-hero:hover {
    background: #d4af37; /* dorado */
    color: #000;
}

.hero-img {
    display: flex;          /* coloca las imágenes juntas */
    gap: 0;                 /* sin espacio entre ellas */
}

.hero-img img {
    width: 50%;
    height: auto;
    display: block;         /* elimina huecos internos */
}

.seccion2{
    margin-top: 150px;
    margin-bottom: 200px;
}

.subtitulo{
    text-align: center;
    font-family: sans;
    font-size: 2.5rem;
}

.texto{
    font-family: sans;
    font-size: 2rem;
    text-align: justify;
    margin-left: 300px;
    margin-right: 300px;
}

.seccion3{
    max-width: 1000px;
    margin: 60px auto;
    padding: 20px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-size: 1.2rem;
}

.seccion4 { 
    margin-top: 80px;
    width: 95%;         /* OCUPA TODO EL ANCHO */
    padding: 60px 40px;  /* Espaciado interno */
    background: #000;    /* Fondo negro */
    color: #fff;         /* Texto blanco */
    margin: 0;           /* Quita margen exterior */
    margin-bottom: 100px;
}

.contenedor-faq {
    max-width: 1000px;
    margin: auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #444; /* gris suave para que combine */
    padding-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 0;
    color: #fff;
}

.faq-answer {
    font-size: 1.2rem;
    font-family: Arial;
    display: none;
    padding: 10px 0;
    color: #fff; /* TEXTO BLANCO */
}

.faq-answer.show {
    display: block;
}

.fondo1 {
    background: url("../imagenes/IMG_3.JPG") no-repeat center/cover;
    height: 100vh; /* Ocupa toda la pantalla */
    background-image: url("../imagenes/IMG_3.JPG"); /* Ruta de la imagen */
    background-size: cover; /* Que cubra todo el contenedor */
    background-position: center; /* Centrada */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin-bottom: 80px;
}

h3 {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 8px 2px 18px  #000000; /* sombra para resaltar texto */
    margin: 0;
    margin-top: 50px;
    margin-bottom: 100px;
}

.btn{
    display: inline-block;
    background: #000;
    padding: 10px 40px;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: Arial;;
    transition: .3s;
    margin-left: 30px;
}

.btn:hover {
    background: #d4af37; /* dorado */
    color: #000;
}



/* SOBRE NOSOTROS */
.hero-img1 {
    display: flex;          /* coloca las imágenes juntas */
    gap: 0;                 /* sin espacio entre ellas */
}

.hero-img1 img {
    width: 100%;
    height: auto;
    display: block;         /* elimina huecos internos */
}
/* Sección general */
.mision-vision {
    padding: 80px 20px;
    background: #ffffff;
}

/* Contenedor en dos columnas */
.mv-wrapper {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

/* Cada tarjeta (bloque) */
.mv-card {
    flex: 1 1 45%;
}

/* Títulos */
.mv-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    position: relative;
}

/* Línea dorada debajo del título */
.mv-card h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #d4af37;
    position: absolute;
    bottom: -6px;
    left: 0;
    border-radius: 2px;
}

/* Párrafos */
.mv-card p {
    margin-top: 25px;
    font-size: 1.3rem;
    line-height: 1.6;
    color: #000;
}

/* Sección general */
.valores-section {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
}

/* Título con línea decorativa */
.valores-title {
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
    color: #111;
}

.valores-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 100px;
    height: 3px;
    background-color: #d4af37; /* dorado */
    border-radius: 5px;
}

/* Grid de valores */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Tarjetas de valores */
.valor-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

/* Títulos de tarjetas */
.valor-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #000;
}

.valor-card::before,
.valor-card h3::before {
    content: none !important;
}

/* Párrafo dentro de tarjeta */
.valor-card p {
    color: #000;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Sección del equipo */
.team-section {
    padding: 70px 20px;
    background: #ffffff;
    text-align: center;
}

/* Título */
.team-title {
    font-size: 2.3rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    color: #111;
}

.team-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 65px;
    height: 3px;
    background: #d4af37; /* dorado */
    border-radius: 5px;
}

/* Descripción */
.team-description {
    max-width: 750px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #000;
    line-height: 1.7;
}

/* Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: auto;
}

/* Versión móvil */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* Tarjetas */
.team-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.team-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.10);
}

/* Imagen */

.team-card img {
    width: 300px;             /* tamaño de la imagen */
    height: 300px;            /* debe ser igual al width */
    object-fit: cover;        /* hace que la imagen no se deforme */
    border-radius: 50%;       /* esto la hace circular */
    margin-bottom: 15px;
}


/* Nombre */
.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #000;
}

/* Rol */
.team-role {
    display: block;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Descripción */
.team-card p {
    color: #000;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Para que la primera tarjeta ocupe todo el ancho */
.team-main {
    grid-column: span 2; /* En pantallas grandes */
}

/* En móvil sigue siendo una columna, así que queda arriba automáticamente */
@media (max-width: 768px) {
    .team-main {
        grid-column: span 1;
    }
}


/* SOBRE NOSOTROS */






/* SERVICIOS */
.intro-sesiones {
    max-width: 1200px; 
    margin: 40px auto; 
    padding: 10px;
}

.intro-sesiones h2 {
    text-align: center;
    font-family: serif; /* Cambia a la fuente que uses */
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 70px;
    line-height: 1.2;
}

.intro-sesiones p {
    font-size: 1.5rem;
    margin-left: 50px;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #e7e3e0;
    padding: 30px;
    border-radius: 10px;
    gap: 20px;
    margin: 40px auto;
    max-width: 1000px;
    align-items: center;
    font-family: sans-serif;
}

.service-text h2 {
    font-family: serif;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-text p {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 10px;
}

.service-text ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.service-text li {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 15px;
}

.price {
    font-size: 1.05rem;
    margin: 15px 60;
    color: #000;
}

.btn-agendar {
    margin-left: 130px;
    margin-top: 30px;
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.btn-agendar:hover {
    background: #d4af37;
}

.service-image img {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    object-fit: cover;
}

/* SERVICIOS */






/* GALERIA */

.galeria h2 {
    font-size: 4rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.subtitulo {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
}

/*columna 1*/

.galeria-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 60px;
    justify-items: center; 
    max-width: 1000px; 
    margin: 0 auto; 
    margin-bottom: 150px;
} 

.galeria-item { 
    width: 300px; 
    height: 350px;
    background: #f8f8f6; 
    border-radius: 4px; 
    padding-bottom: 12px; 
    box-shadow: 0px 5px 10px 5px rgba(3, 3, 3, 0.1); 
}

.galeria-item img { 
    width: 90%; 
    height: 250px; object-fit: cover; 
    margin-top: 20px;
    margin-left: 18px;
    margin-bottom: 20px;
    display: block; 
} 

.galeria-titulo { 
    font-size: 1.5rem; 
    color: #333; 
    font-weight: 500; 
    margin-top: 10px; 
}

.galeria-titulo:hover { 
color: #555;
}

/*columna 2*/

.galeria-grid1 {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 120px; 
    justify-items: center; 
    max-width: 1000px; 
    margin-left: 28%; 
    margin-bottom: 200px;
}

.galeria-item1 { 
    width: 300px; 
    height: 350px;
    background: #f8f8f6; 
    border-radius: 4px; 
    padding-bottom: 12px; 
    box-shadow: 0px 5px 10px 5px rgba(3, 3, 3, 0.1); 
}

.galeria-item1 img { 
    width: 90%; 
    height: 250px; object-fit: cover; 
    margin-top: 20px;
    margin-left: 18px;
    margin-bottom: 20px;
    display: block; 
} 

.galeria-titulo1 { 
    font-size: 1.5rem; 
    color: #333; 
    font-weight: 500; 
    margin-top: 10px; 
}

.galeria-titulo1:hover { 
    color: #555;
}

/* Centrar solo los elementos 4 y 5 */
.galeria-item:nth-child(4),
.galeria-item:nth-child(5) {
    justify-self: center;
}

.video{
    margin-bottom: 150px;
}

/*GALERIA*/




/*FOTOS*/
/* Contenedor general */
.categoria-fotos {
    width: 90%;
    margin: 80px auto;
    text-align: center;
    margin-bottom: 100px; /* ← añade espacio debajo */
}

/* Título */
.categoria-titulo {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    letter-spacing: 2px;
    margin-bottom: 50px;
    color: #262626;
}

.galeria-container {
    max-width: 1400px; /* más ancho para que entren bien 3 fotos grandes */
    margin: 0 auto;
    padding: 0 20px;
}

/* 3 columnas grandes */
.categoria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 fotos siempre en desktop */
    gap: 40px;
    justify-items: center;
}

/* Contenedor de cada foto */
.foto-item {
    width: 100%;
    max-width: 450px; /* ← tamaño grande */
}

/* Imagen */
.foto-item img {
    width: 100%;
    height: auto;
    object-fit: cover;   /* se ve estética */
    border-radius: 5px;
}
.video-section {
    width: 90%;
    margin: 0 auto;
    margin-top: 60px;  /* espacio respecto a las fotos */
    text-align: center;
}

.video-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Contenedor del video */
.video-wrapper {
    width: 80%;          /* tamaño del video */
    max-width: 900px;    /* límite máximo para que no crezca demasiado */
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: #000;    /* evita bordes blancos si el video no llena */
}

/* Video en sí */
.video-wrapper video {
    width: 100%;
    height: 500px;       /* altura del video */
    display: block;
}

.regresar { 
    font-size: 2rem; 
    color: #333; 
    font-weight: 500; 
    margin: 60px 0 120px;    /* espacio arriba y abajo */
    display: inline-block;   /* permite márgenes verticales */
}

.regresar:hover {
    color: #555;             
}

/* Modo móvil: 1 por fila */
@media (max-width: 850px) {
    .categoria-grid {
        grid-template-columns: repeat(2, 1fr); /* tablets */
    }
}

@media (max-width: 600px) {
    .categoria-grid {
        grid-template-columns: repeat(1, 1fr); /* celulares */
    }
}



.lightbox {
    display: none; /* oculto por defecto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(188, 184, 186, 0.9); /* tono vino oscuro con transparencia */
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(146, 89, 110, 0.5);
    border: 3px solid #333;
    animation: aparecer 0.4s ease;
}

@keyframes aparecer {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
  }
}

/*FOTOS*/










/*CONTACTO*/

.contacto {
    width: 100%;
    margin-top: 50px;
    padding: 0px 0;
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.contacto-contenedor {
    max-width: 850px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0px;
}

/* Columna izquierda */
.contacto-info h2 {
    font-size: 4rem;
    margin-bottom: 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contacto-info p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contacto-info a {
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #000;
    transition: .3s;
}

.contacto-info a:hover {
    color: #777;
    border-color: #777;
}

/* Imagen */
.contacto-img img {
    width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
}

/* RESPONSIVO */
@media(max-width: 850px){
    .contacto-contenedor{
        flex-direction: column;
        text-align: center;
    }
    .contacto-img img{
        width: 80%;
    }
    .contacto-info p{
        justify-content: center;
    }
}

#logo{
    width: 60px;
    height: 60px;
}

/*CONTACTO*/








/*pie pagina*/

footer {
    background: #000;
    color: white;
    padding: 40px 20px 20px;
    font-size: 20px;
    font-family: Arial;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #fff;
}

.footer-col p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons img {
    width: 35px;   /* Ajusta el tamaño */
    height: 35px;
    border-radius: 60%;  /* Para que se vean redondos */
    margin: 5px;
    transition: 0.3s;
    margin-left: 20px;
}

aside{
    background: #000;
    color: white;
    padding: 40px 20px 20px;
    font-size: 18px;
    font-family: Arial;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}