body, html{
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
}
.contenedor{
    display: flex;
    text-align: right;
    padding: 5px;
    background-color: rgb(226, 226, 226);
    justify-content: right;
    gap: 30px;
    
}
.boton-redireccion{
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    color: black;
}
.btn-menu {
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
}
.menu{
    position: relative;
}
.submenu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.submenu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;
}
.submenu a:hover {
    background-color: #f0f0f0;
}
.menu:hover .submenu {
    display: block;
}
.encabezado{
    background: #b16808;

}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img{
    width: 100px;
    border-radius: 0%;
}
.encabezado nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0px;
}
.encabezado nav ul{
    list-style: none;
    display: flex;;
    justify-content: space-between;
}
a{
    text-decoration: none;
    font-size: 20px;
    color: white;
    padding: 12px 20px;
    display: block;
}
a:hover{
    background: rgb(44, 44, 44);
}
.encabezado nav ul li ul{
    display: flex;
    flex-direction: column;
}
.encabezado nav ul li ul{
    position: absolute;
    z-index: 1;
    background: #c49410;
}
.encabezado nav ul li ul li{
    width: 180px;
    position: relative;
    z-index: 1;
}
.encabezado nav ul li ul li ul{
    top: 0;
    left: 180px;
    position: absolute;
    z-index: 1;
}
.encabezado nav ul li ul{
    display: none;
}
.encabezado nav ul li:hover > ul{
    display: block;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  background-image: url("/Multimedia/Imagenes/fondo.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
}

.hero-content {
  position: relative;
  max-width: 500px;
  z-index: 1;
}

.hero-content h1 {
  color: #d39118;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
}

.hero-content p {
  margin: 20px 0;
  color: #444;
  font-size: 16px;
  font-weight: bold;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #d39118;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}


.btn-secondary {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #f4e400;
  color: #003;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  z-index: 2;
}


/* ===== INFO SECTION ===== */
.info{
    padding-top: 100px;
    padding-bottom: 100px;
}
.info {
  padding: 80px 20px;
  background: #fff;
}
.info-text{
    padding-right: 20px;
    max-width: 520px;
}

.info-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXTO */
.info-text h1 {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.info-text h1 span {
  color: #d39118;
}

.info-text h2 {
  font-size: 20px;
  color: #d39118;
  margin-bottom: 25px;
  font-weight: 600;
}

.info-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* CTA */
.info-cta {
  border: 2px solid #d39118;
  padding: 16px 22px;
  font-weight: 700;
  font-size: 14px;
  margin: 30px 0;
}

.info-cta span {
  color: #d39118;
}

/* SUBTÍTULO */
.info-subtitle {
  color: #d39118;
  font-size: 18px;
  font-weight: 600;
}

/* IMAGEN */
.info-image{
    display: flex;
    justify-content: center;
}
.info-image img {
  width: 100%;
  border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .info-container {
    grid-template-columns: 1fr 1fr;
  }

  .info-text h1 {
    font-size: 26px;
  }
}

/* MISSION AND VISION*/
.missviss {
  padding: 80px 10%;
  background: #f5f7fa;
  text-align: center;
}

.titulo {
  font-size: 36px;
  margin-bottom: 50px;
  color: #d39118;
}

.compler {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.mv-card {
  background: #fff;
  width: 320px;
  padding: 40px 25px 60px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-10px);
}

.mv-icon {
  font-size: 24px;
  margin-bottom: 15px;
  color: #222;
}

.mv-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.number {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Miss .number {
  background: #f4b400;
}

.viss .number {
  background: #1e88e5;
}

.areas {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

.areas-left {
  position: relative;
  z-index: 2;
  width: 40%;
  height: 100%;
  background: #d39118;
  color: white;
  padding: 80px 60px;
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.areas-left h2 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.areas-left p {
  margin: 10px 0;
}

.hours-link,
.see-all {
  display: inline-block;
  margin-top: 8px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.quote-btn {
  display: inline-block;
  margin-top: 30px;
  background: #ffe600;
  color: #000;
  padding: 14px 26px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
}

.areas-map {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10%;      
  width: 77%;       
  height: 100%;
  z-index: 1;
}

.areas-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.areas-map:hover {
  background: transparent;
}

.encabezado nav div a:hover {
  background: transparent;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-img {
    max-width: 95vw;     /* ancho casi completo */
    max-height: 95vh;    /* alto casi completo */
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 20px;
    user-select: none;
}

.prev { left: 30px; }
.next { right: 30px; }

.prev:hover, .next:hover, .close:hover {
    color: #d39118;
}