/* ============================
    SECCIÓN DE TIPOGRAFÍA
   ============================ */
   h1, h2, h3, h4, h5, h6, p, a, span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin: 0;
}

h1 { 
    font-size: 48px; 
}

h2, h4, h6 {
    color: #232323;
}

h2 { 
    font-size: 30px; 
}

h4 { 
    font-size: 18px; 
}

h6 { 
    font-size: 14px; 
}

h5 { 
    color: #232323; 
}

p, a, span {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;  
    color: #232323;
    
}

/* ============================
    ESTILOS GENERALES DE ENLACES
   ============================ */
a, a:hover, a:focus, a:active, button:focus {
    text-decoration: none;
    border: none;
    outline: none;
    transition: 0.6s;
    color: #666;
}

a:hover, a:active {
    color: #666666;
}

/* ============================
    ESTILOS DE MEDIOS (IMÁGENES, IFAMES)
   ============================ */

img { 
    max-width: 100%; 
    height: auto;
}
iframe {
    width: 100%;
    border: none;
}

/* ============================
    ESTILOS DE FORMULARIOS
   ============================ */

input[type="text"], input[type="submit"], button[type="submit"], 
input[type="email"], input[type="url"], input[type="tel"], 
input[type="search"], input[type="password"], input[type="number"], 
textarea {
    background: transparent;
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

textarea { height: 120px; }
textarea:focus, input:focus, select:focus, button:focus {
    outline: none;
    box-shadow: none;
}

/* ============================
    ESTILOS DE SECCIONES
   ============================ */

.sec-title {
    text-align: center;
    max-width: 400px;
    margin: 0 auto 40px;
}

.sec-title h2 {
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
    top: -6px;
}

.sec-title h2 .sec-title-border {
    width: 130px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 2px solid #222;
    height: 0;
    margin: auto;
}

.sec-title h2 .sec-title-border span {
    width: 9px;
    height: 9px;
    position: relative;
    display: inline-block;
    margin: 0 1px;
    bottom: 23.3px;
}

.sec-title h2 .sec-title-border span::before {
    background: #222;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform: rotate(45deg);
}

/* ============================
    MÁRGENES Y RELLENOS
   ============================ */

.mt-100 { margin-top: 100px; }
.mt-30 { margin-top: 30px; }
.ptb-100, .ptb-90 { padding: 100px 0, 90px 0; }

/* ============================
    NAVEGACIÓN Y BOTONES
   ============================ */

button, .btn-primary {
    cursor: pointer;
    border-radius: 15px;
    padding: 6px 25px;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    color: #000000;
    border: 1px solid #000529;
    
}

button:hover, .btn-primary:hover {
    background: #fff;
    color: #666;
    
}

.btn-secondary {
    border-radius: 25px;
    background: #ffffff;
}

.btn-secondary:hover {
    background: #3ceff8;
    color: #ffffff;
}

.btn {
    margin-top: 15px;
}

/* ============================
    FLEXBOX
   ============================ */

.flexbox-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================
    OWL CAROUSEL
   ============================ */




/* ============================
    INPUTS Y PLACEHOLDERS
   ============================ */

input::-webkit-input-placeholder {
    color: #666;
}

/* ============================
    HEADER INICIO
   ============================ */

   .header {
    position: fixed;
    top: 0;
    left: 0;
	transition: all 0.4s;
    width: 100%;
    z-index: 99;
	padding: 18px 0;
}

.header.sticky {
    padding: 5px 0;
    background: #b6fbff;
    background: -webkit-linear-gradient(to right, #b6fbff, #83a4d4);
    background: linear-gradient(to right, #b6fbff, #83a4d4);
    border-bottom: 1px solid #fff;
    height: 60px;
}

.container {
    padding: 0;
}

.mainmenu {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    
}

.mainmenu li {
    display: inline-block;
    text-transform: uppercase;
    margin: 0 10px;
}

.mainmenu li a {
    display: inline-block;
    color: #fff;
    padding: 5px 12px;
    margin: 0;
    border: 1px solid transparent;
    position: relative;
    font-size: 14px;
}

.mainmenu li a:hover,
.mainmenu li a.active {
    border-color: #fff;
}

/* ============================
    SECCIONES
   ============================ */
#home {
    background: #b6fbff;
    background: -webkit-linear-gradient(to right,   #b6fbff, #83a4d4);
    background: linear-gradient(to right,  #b6fbff, #83a4d4);
}

#ubicacion {
    background: #b6fbff;
    background: -webkit-linear-gradient(to right, #b6fbff, #83a4d4);
    background: linear-gradient(to right, #b6fbff, #83a4d4);
    padding: 50px;
    text-align: center;
}

#quienes-somos {
    padding: 50px;
    text-align: center;
}



#servicios {
    text-align: center;
    padding: 50px;
    align-items: center;
}

#cursos {
    text-align: center;
    padding: 50px;
}

/* ============================
    SERVICIOS 
   ============================ */

.icon-container {
    padding: 25px;
    transition: box-shadow 0.4s;
}

.icon-container i::before {
    font-size: 40px;
    display: block;
    transition: color 0.4s;
}

.icon-container:hover {
    box-shadow: 0 0 5px #ccc;
}

.icon-container:hover i::before {
    color: #000;
}

.icon-container h4 {
    margin: 25px 0 15px;
}

.mainmenu {
    display: block;
}
.responsive-menu {
    display: none;
}

.slicknav_menu {
	padding: 0;
    background: transparent;
}

/* ============================
    ICONOS SOCIALES
   ============================ */
   
   @keyframes fadeInSlideUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.social-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeInSlideUp 1s forwards;
    animation-delay: 0.5s;
}

.social-icon {
    display: block;
    margin-bottom: 15px;
    font-size: 36px;
    color: #fff;
    background-color: #232323;
    padding: 15px;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.whatsapp {
    background-color: #25D366;
}

.social-icon.tiktok {
    background-color: #010101;
}

.social-icon.facebook {
    background-color: #1877F2;
}

.fab {
    font-size: 24px;
    color: white;
}


/* ============================
    FORMULARIO
   ============================ */
.footer {
    position: relative;
    z-index: 1;
    padding: 20px 15px 35px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.contact-form,
.contact-address {
    background: #fff;
    padding: 5% 8%;
    margin-bottom: 40px;
    border: 1px solid #ddd;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    border: 1px solid #bbb;
}

.contact-form button {
    transition: all 0.4s;
}

.contact-form button:hover {
    background: #b6fbff;
    border-color: #3ceff8;
    color: #fff;
}

.contact-form h4,
.contact-address h4 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.contact-address li {
    margin-bottom: 33px;
    display: flex;
    flex-wrap: wrap;

}

.contact-address li .contact-address-icon {
    flex: 1;
    min-width: 40px;
    margin-right: 10px;
}

.contact-address li .contact-address-info {
    flex: 6;
    min-width: 150px;
}

.contact-address li .contact-address-icon i::before {
    width: 38px;
    height: 38px;
    border-radius: 100%;
    border: 1px solid #000000;
    display: block;
    text-align: center;
    line-height: 39px;
    font-size: 18px;
    transition: all 0.4s;
}

.contact-address li .contact-address-info a {
    display: block;
}

.contact-address p {
    margin-bottom: 45px;
    padding-top: 10px;
}
.contact-address-info a {
    max-width: 100%;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* ============================
    COPYRIGHT
   ============================ */

.copyright {
    text-align: center;
    padding: 20px 0;
    background-color: transparent;
}

.copyright p {
    color: #000000;
    margin: 10px 0;
    font-size: 14px;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    overflow: visible;
    width: 100%;
    height: 100%;
    background: #fff url("../images/Spin.svg") no-repeat center center;
    z-index: 9999;
}

.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: #0ddee9;
}
