@charset "utf-8";
/* CSS Document */

:root {
  --color-primary: #e77535;
  --color-secondary: #23364a; /*23364a*/
  --color-white: #ffffff;
  --color-yellow: #fbe325;
}

body {
  font-family: 'Fira Sans', sans-serif;
  font-size: 12pt;
  color: #2b4b60;
  line-height: 2em;
  text-align: center;
  overflow-x: hidden; /* Evita scroll horizontal */
}

h1, h2 {
  margin-top: 80px;
  font-weight: 80;
  font-weight: bold;
}

h3 {
  font-size: 11pt;
  font-weight: 100;
}

h2 {
  color: var(--color-secondary);
}

#container {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0px;
  left: 0px;
  margin-left: 0px;
  margin-top: 0px;
}

#subcont {
  width: 100%;
  margin-top: 120px;
}

#subcont2 {
  width: 100%;
  margin-top: 140px;
}

#header {
  position: relative;
  width: 100%;
  height: 40px;
  color: white;
  background-color: var(--color-primary);
}

/* Bordes planes */
.hover-border {
  display: block; /* Necesario para que el borde aplique al contenedor <a> */
  padding: 15px; /* Espacio interno para que el borde no quede pegado al texto */
  transition: all 0.3s ease; /* Transición suave */
  text-decoration: none; /* Opcional: elimina el subrayado del enlace */
  color: inherit; /* Hereda el color del texto (evita cambios al pasar el mouse) */
}

.hover-border:hover {
  border: 4px solid var(--color-primary); /* Borde azul al pasar el mouse */
  box-shadow: 0 4px 12px rgba(231, 117, 53, 0.3); /* Sombra opcional */
  border-radius: 8px; /* Bordes redondeados */
}

.borderl {
  box-sizing: border-box;
}

.borderr {
  border-right-color: var(--color-secondary);
  box-sizing: border-box;
}

.borderb {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  box-sizing: border-box;
}

.bordert {
  border-top-style: solid;
  border-top-color: var(--color-secondary);
  border-top-width: 1px;
  box-sizing: border-box;
}

.inwidth {
  width: 100%;
  max-width: 1080px;
  min-width: 925px;
  margin: auto;
  position: relative;
  height: 100%;
}

.inwidth2 {
  width: 100%;
  max-width: 1080px;
  min-width: 925px;
  margin: auto;
  position: relative;
  height: 100%;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

.inwidth-block {
  width: 100%;
  max-width: 1080px;
  min-width: 925px;
  margin: auto;
  position: relative;
  height: 100%;
  display: inline-block;
}

.inwidth-block2 {
  width: 100%;
  max-width: 1080px;
  min-width: 925px;
  margin: auto;
  position: relative;
  height: 100%;
  display: inline-block;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

/* Width classes */
.w50 { width: 50%; }
.w40 { width: 40%; }
.w33 { width: 33.33%; }
.w30 { width: 30%; }
.w25 { width: 25%; }
.w20 { width: 20%; }
.w16 { width: 16.6666%; }
.w14 { width: 14%; }
.w10 { width: 10%; }

.w50, .w40, .w33, .w30, .w25, .w20, .w16, .w10, .w14 {
  float: left;
}

.tableo {
  height: 100%;
  display: table;
  vertical-align: middle;
}

.tablei {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.pad15 {
  padding: 15px;
  box-sizing: border-box;
}

.pad20 {
  padding: 20px;
  box-sizing: border-box;
}

.center {
  margin: auto;
  position: relative;
}

.wtitle {
  font-size: 50pt;
  text-align: center;
  color: white;
  font-weight: bold;
  line-height: 1em;
}

.rtitle {
  font-size: 50pt;
  text-align: center;
  color: #e04040;
  font-weight: bold;
}

h1 {
  margin: 150px 80px 80px 80px;
  font-size: 20pt;
  text-align: center;
}

a {
  color: inherit;
  text-decoration: none;
}

.par {
  text-align: center;
}

/* Selector de Sede - Estilo Cuadrado */
.sede-selector {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    gap: 15px;
}

.sede-btn {
    padding: 12px 25px;
    border-radius: 6px; /* Bordes ligeramente redondeados */
    background: var(--color-primary);
    color: #FFF;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sede-btn.active {
    background: var(--color-secondary);
    color: white;
}

.sede-btn:hover:not(.active) {
    transform: translateY(-2px);
    color: white;
}

.sede-btn:active {
    transform: translateY(0);
    color: white;
}

/* Banner */
.split-container {
  display: flex;
  width: 100%;
  min-height: 400px;
}

/* Carrusel */
.carousel-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 680px; /* Altura fija (ajustable) */
  overflow: hidden;
}

.carousel-slider {
  width: 100%;
  height: 100%;
  position: absolute;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background: var(--color-secondary);
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: auto;
  height: 100%;
  object-fit: cover; /* Cubre el espacio sin deformar */
}

/* Flechas */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 15px;
  z-index: 10;
  border-radius: 50%;
}

.left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Indicadores */
.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.indicator.active {
  background: white;
}

/* Gifs */
.gif-flotante {
  width: 100%;
}

.wi90 {
  margin: auto;
  width: 90%;
  padding: 40px;
  box-sizing: border-box;
}

.wi90p20 {
  margin: auto;
  width: 90%;
  padding: 20px;
  box-sizing: border-box;
}

.wi95p5 {
  margin: auto;
  width: 95%;
  padding: 5px;
  box-sizing: border-box;
}

.button1 {
  width: 150px;
  padding-top: 5px;
  padding-bottom: 5px;
  box-sizing: border-box;
  background-color: var(--color-primary);
  margin: auto;
  color: white;
  margin-top: 20px;
  cursor: pointer;
}

#banner-back {
  padding-top: 50px;
  padding-bottom: 50px;
}

#banner-backw {
  padding-top: 50px;
  padding-bottom: 50px;
}

section {
  padding-top: 40px;
}

.el-tit {
  height: 70px;
  margin: auto;
}

.rimg {
  border-radius: 50%;
}

#footer {
  padding-top: 25px !important;
  font-size: 10pt !important;
  line-height: 1.2em;
  padding-bottom: 25px;
  font-size: 9pt;
}

.footertit {
  font-size: 12pt;
  font-weight: bold;
  margin-top: 0px;
}

ul, li {
  margin-left: 0px;
  padding-left: 3px;
  font-size: 10pt;
}

.redb {
  border-width: 9px !important;
  border-color: #e04040 !important;
}

#banner {
  position: relative;
  background-image: url(img/banner2.jpg);
  background-position: center;
  width: 100%;
  height: 630px;
  min-width: 925px;
  background-size: contain;
  background-repeat: no-repeat;
}

#banner2 {
  position: relative;
  background-position: center;
  background-size: 100%;
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
}

.h2in {
  font-size: 30pt;
  font-weight: bold;
}

.h22in {
  color: #e77535;
}

.h22in2 {
  color: var(--color-secondary);
  font-size: 40pt;
  font-weight: bold;
}

.rates {
  font-size: 13pt;
}

.rates_c {
  list-style-type: none;
}

.form-cont {
  margin-bottom: 15px;
}

.form-icon {
  width: 50px;
  float: left;
}

input, textarea {
  font-size: 11pt;
  font-weight: 100;
  color: #616163;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  padding: 5px;
  border-color: #adabab;
  width: 300px;
  font-family: 'Fira Sans', sans-serif;
}

textarea {
  resize: none;
}

.divmsgcont {
  position: fixed;
  z-index: 999999999999;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: #05060678;
  display: none;
}

.msg {
  position: absolute;
  margin: auto;
  width: 400px;
  height: 200px;
  background-color: white;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  border-radius: 5px;
}

/* Tarjetas de paquetes */
.packages-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  flex: 1 1 calc(25% - 40px); /* 4 columnas en desktop (25% - gap) */
  min-width: 250px;
  max-width: 280px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border-top: 4px solid var(--color-primary);
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(231, 117, 53, 0.2);
}

.package-header {
  background: var(--color-primary);
  color: white;
  padding: 20px;
  text-align: center;
}

.package-title {
  font-family: 'Fira Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: white;
  text-transform: uppercase;
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0;
}

.package-price small {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.9;
}

.package-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 5px;
}

.package-features {
  padding: 20px;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.feature-item i {
  color: var(--color-primary);
  margin-right: 10px;
  min-width: 20px;
  text-align: center;
}

.package-cta {
  padding: 0 20px 25px;
  text-align: center;
}

.btn-package {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-package:hover {
  background: #d1662a;
  transform: scale(1.05);
}

/* Botón de WhatsApp flotante */
.float-wa {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 36px;
  z-index: 100;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  animation: pulse 2s infinite;
  border: 2px solid white;
}

.float-wa:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.float-wa i {
  margin-top: 2px;
}

/* Media queries para móviles */
@media (orientation: portrait) {
  #bann {
    height: 400px;
    width: 100%;
    margin-left: -50%;
  }
  
  body {
    font-size: 17pt;
  }
  
  .inwidth, .inwidth2, .inwidth-block, .inwidth-block2, #banner, #banner2 {
    min-width: 0px;
  }
  
  .inwidth, .inwidth2, .inwidth-block, .inwidth-block2 {
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
  }
  
  .w50, .w40, .w33, .w30, .w25, .w20, .w16, .w10 {
    float: none;
    width: 100%;
  }
  
  .tablei {
    line-height: 1;
  }
  
  .rates, .h22in2, h3 {
    font-size: 25pt;
  }
  
  #footer {
    font-size: 17pt !important;
  }
  
  #footlogo {
    width: 60%;
  }
  
  #header {
    display: none;
  }
  
  .form-cont {
    text-align: center;
  }
  
  input, textarea {
    font-size: 18pt;
    padding: 15px;
  }
  
  .button1 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  .package-card {
    flex: 1 1 calc(50% - 30px); /* 2 columnas */
  }
  
  .package-title {
    font-size: 1.3rem;
  }
  
  .package-price {
    font-size: 1.8rem;
  }
  
  .float-wa {
    width: 70px;
    height: 70px;
    font-size: 36px;
  }
}

.hover-border:hover {
  border: 2px solid #e77535;
  box-shadow: 0 4px 12px rgba(231, 117, 53, 0.3);
  border-radius: 8px;
}

.active-border {
  border: 2px solid #e77535 !important;
  box-shadow: 0 4px 12px rgba(231, 117, 53, 0.3) !important;
  border-radius: 8px !important;
}