/* SLIDER */

* {box-sizing: border-box}
.mySlides1 {
	display: none;
	}
.mySlides1 img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container1 {
  width:100%;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prevv, .nextt {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;

  user-select: none;
}

/* Position the "next button" to the right */
.nextt {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prevv:hover, .nextt:hover {
	color:#FFF;
  background-color: rgba(0,0,0,0.4);
}

/* Caption text */
.textt {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: center;
  background-color: rgba(0,0,0,0.3);
  margin:0;
  font-family:"Roboto-Regular";
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dott {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  display:none;
}

.active, .dott:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1s;
  animation-name: fade;
  animation-duration: 1s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prevv, .nextt,.textt {font-size: 13px}
}

/* FIN SLIDER */

.container2 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: space-evenly;
  justify-content: space-evenly;
  /* -webkit-box-align: center;
  align-items: center;*/
  height: auto;
  max-width:1500px;
  margin-left:auto;
  margin-right:auto;
  /* overflow: hidden;*/
  
}

.box {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 25%;
  /*height: 250px;*/
  /*border-radius: 15px;*/
  -webkit-transition: .5s;
  transition: .5s;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  
}
.box--blue {
 /* background: -webkit-gradient(linear, left top, right top, from(#09C), to(#06C));*/
  /*background: linear-gradient(to right, #09F 0%, #09C 100%);*/
  background:#09AFED;
  
}
.box--pink {
  background: -webkit-gradient(linear, left top, right top, from(#FF7A9B), to(#FF0040));
  background: linear-gradient(to right, #FF7A9B 0%, #FF0040 100%);
}
.box--orange {
  background: -webkit-gradient(linear, left top, right top, from(#FBB54E), to(#FF9900));
  background: linear-gradient(to right, #FBB54E 0%, #FF9900 100%);
}
.box--green {
  background: -webkit-gradient(linear, left top, right top, from(#76EED6), to(#00D5AA));
  background: linear-gradient(to right, #76EED6 0%, #00D5AA 100%);
}
.box .profile {
  margin-top: 10px;
 
 
}
.box .profile img {
  width:50%;
}
.box .content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  text-align: center;
 /* padding: 30px;*/
/* padding:15px; sin icono*/
padding:15px;

}
.box .content h1 {
  font-weight: 600;
  font-size: 28px;
  color: white;
  margin: 5px;
  font-family:'TitilliumWeb-Bold';
}
.box .content p {
    color: white;
    font-size: 16px;
    font-family:'TitilliumWeb-Regular';
	line-height:18px;
}


form {
    width:100%;
    -webkit-appearance:menu-list;
	-moz-appearance:menu-list;
}
.cartillaselect { 
    font-family:'TitilliumWeb-Regular';
	line-height:18px;
	width:85%;
	
}
.cartillaselect select {
    background-color:transparent;
    border:1px solid #FFF;
    color:#FFF;
    border-radius:0;
    font-size: 15px;
    font-family:'TitilliumWeb-Regular';
	line-height:18px;
	width:100%;
	padding:1%;
	cursor:pointer;
    outline:none;
	-moz-font-family:Verdana, Geneva, sans-serif;

}
.cartillaselect select option {  
    background-color: #09AFED;
	width:auto;
    border-color: 1px solid #900;
    color:#FFF;
    outline:none;
}

.cartillaselect select option:disabled {
    color:#CCC;
}


.box:hover {
/*  -webkit-transform: scale(1.03);
     transform: scale(1.03);*/
	 background:#009EEA;		  
}

.dropdownn {
  /*margin: 20% auto 0px;*/
  position:absolute;
  width: 20vw;
  cursor: pointer;
  margin:3vw;
}

.dropdownn label {
  display: inline-block;
  padding: 5px 10px;
  background: #09AFED;
  border:1px solid #FFF;
  color:#FFF;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s linear 0s;
  cursor: pointer;
}

.dropdownn ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  width: 100%;
}

.dropdownn li {
  margin: 0px;
  padding: 0px;
  background: #09AFED;
  border:1px solid #FFF;
  width: 100%; max-height: 0px;
  overflow: hidden;
  box-sizing: border-box;
  transition: max-height 0.2s linear 0s;
}

.dropdownn li:hover {
  background:#06F;
  color: #FFF;
}

.dropdownn li span {
  display: inline-block;
  padding: 5px 10px;
}

.dropdownn:hover label {

  color: #FFF;
}

.dropdownn:hover li {
  max-height: 50px; /* Any number larger than the actual height of the li works */
}





@media (max-width: 991px) {
  .container2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .container .box {
    margin: 5px;
    padding: 2%;
  }
  .container .box .profile {
    margin-top: 10px;
    width: 60px;
    height: 120px;
  }
  .container .box .content {
    text-align: center;
  }
  .container .box .content h1 {
    margin-top: -10px;
    font-size: 4vw;
  }
  .container .box .content p {
    font-size: 3vw;
	line-height:3vw;
  }
  .box{
	  width:100%;
  }	
  .cartillaselect{
    width:90%;
}
  .cartillaselect select {
    background-color:transparent;
    border:1px solid #FFF;
    color:#FFF;
    border-radius:0;
    font-size: 15px;
    font-family:'TitilliumWeb-Regular';
	line-height:18px;
	width:100%;
	padding:1%;
	cursor:pointer;
    outline:none;
}
}

@media (max-width: 640px) {
  .container2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .container .box {
    margin: 5px;
    padding: 2%;
  }
  .container .box .profile {
    margin-top: 10px;
    width: 60px;
    height: 120px;
  }
  .container .box .content {
    text-align: center;
  }
  .container .box .content h1 {
    margin-top: -10px;
    font-size: 5vw;
  }
  .container .box .content p {
    font-size: 3vw;
	line-height:3vw;
  }
  .box{
	  width:100%;
  }
}

@media (max-width: 480px) {
  .container2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .container .box {
    margin: 5px;
    padding: 2%;
  }
  .container .box .profile {
    margin-top: 10px;
    width: 60px;
    height: 120px;
  }
  .container .box .content {
    text-align: center;
	
  }
  .container .box .content h1 {
    margin-top: -10px;
    font-size: 6vw;
  }
  .container .box .content p {
    font-size: 4vw;
	line-height:4vw;
  }
  .box{
	  width:100%;
  }
 
}

/* ===========================
   BLOQUES WHATSAPP RESPONSIVE
   =========================== */

#contact-cta-section .wrapper-full {
    display: flex;
    justify-content: center;         /* centra horizontalmente */
    align-items: stretch;
    gap: 25px;
    flex-wrap: wrap;                 /* permite pasar a 1 columna en pantallas chicas */
    max-width: 1200px;
    margin: 0 auto;
}

#contact-cta-section .cta-wrapper {
    flex: 1 1 45%;                   /* dos columnas */
    background-color: #41c152;
    border-radius: 6px;
    padding: 30px;
    box-sizing: border-box;
    min-width: 320px;                /* evita que se achiquen demasiado */
}

/* TEXTO INTERNO */
#contact-cta-section .cta-wrapper .details-wrapper {
    float: none;
    width: 100%;
}

#contact-cta-section .cta-wrapper h2 {
    font-size: 26px;
    line-height: 1.2em;
    margin-bottom: 10px;
}

#contact-cta-section .cta-wrapper p {
    font-size: 17px;
    margin-bottom: 20px;
}

/* BOTÓN BLANCO AJUSTADO AL TEXTO */
#contact-cta-section .cta-wrapper .blue-cta-button {
    float: none;
    display: inline-block;
    background-color: #fff;
    color: #075E54;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
    white-space: nowrap;             /* evita salto de línea dentro del botón */
}

/* ===========================
       RESPONSIVE  
   =========================== */

@media (max-width: 900px) {
    #contact-cta-section .cta-wrapper {
        flex: 1 1 100%;              /* una columna */
    }
}

/* Texto más chico en celulares */
@media (max-width: 600px) {
    #contact-cta-section .cta-wrapper h2 {
        font-size: 22px;
    }
    #contact-cta-section .cta-wrapper p {
        font-size: 15px;
    }
    #contact-cta-section .cta-wrapper .blue-cta-button {
        font-size: 15px;
        width: 100%;                 /* hace que el botón se vea prolijo en móvil */
        white-space: normal;         /* permite dos líneas si el texto es largo */
        padding: 14px;
    }
}
/* ============================================
   ARREGLO FINAL DEL BOTÓN BLANCO (WHATSAPP)
   ============================================ */

/* Quitar float original que lo sacaba del contenedor */
#contact-cta-section .blue-cta-button {
    float: none !important;
    display: inline-block;
    background-color: #ffffff;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 700;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Centrado horizontal del botón */
#contact-cta-section .cta-wrapper .button-wrapper,
#contact-cta-section .cta-wrapper {
    text-align: left; /* o center si lo querés centrado */
}

/* Para centrarlo perfectamente, usar flex */
#contact-cta-section .cta-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#contact-cta-section .blue-cta-button {
    align-self: flex-start; /* cambiar a center si lo querés centrado */
}

/* 👍 Responsivo */
@media (max-width: 600px) {
    #contact-cta-section .blue-cta-button {
        width: 100%;
        text-align: center;
        white-space: normal;
    }
}
/* === Centrar completamente el contenido de cada bloque WhatsApp === */
.cta-wrapper {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

/* Centrar botón de WhatsApp */
.cta-wrapper .blue-cta-button {
    float: none !important;            /* anula floats que vienen del CSS original */
    display: inline-flex !important;   /* permite centrar icono + texto */
    justify-content: center !important;
    align-items: center !important;
    
    width: auto !important;            /* el botón solo ocupa lo necesario */
    margin: 15px auto 0 auto !important;  /* CENTRADO */
}

/* Si el botón tenía width fijo en otro CSS, lo anulamos así */
.cta-wrapper .blue-cta-button {
    max-width: none !important;
}
.blue-cta-button i {
    font-size: 22px;
    margin-right: 8px;
	
}

