*{

	margin: 0;

	padding: 0;

}



body{



	/*font-family: 'Open Sans', sans-serif;*/

	font-family: 'Roboto', sans-serif;

}



body a{

	text-decoration: none;

	

}

/*************** HEADER MENU ********/


/* Estilos generales del header */

header {
    background-color: #fff; /* Fondo blanco para el header */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Contenedor principal */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

/* Estilos del logo */
.logo img {
    height: 35px;
}

/* Menú hamburguesa para móviles (oculto en escritorio) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #0097D9; /* Color armónico con el fondo blanco */
    margin: 4px 0;
    transition: all 0.3s ease-in-out;
}

/* Menú de navegación (visible en escritorio) */
.menu-items {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: #0097D9; /* Color armónico con el fondo blanco */
    font-size: 16px;
    font-weight: 500;
    padding: 8px 15px;
    transition: background-color 0.3s ease;
}

/* Hover en enlaces del menú */
.nav-links li a:hover {
    background-color: rgba(0, 151, 217, 0.1); /* Fondo azul semitransparente en hover */
    border-radius: 5px;
}

/* Estilos para dropdown en escritorio */
.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0097D9; /* Fondo azul armónico */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
    z-index: 10;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    white-space: nowrap;
    color: #fff; /* Texto blanco en el dropdown */
}

/* Botón CTA "Aula Virtual" con degradado */
.btn-primary {
    background: linear-gradient(135deg, #007bb0, #0097D9); /* Degradado aplicado al botón */
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover del botón con cambio de degradado */
.btn-primary:hover {
    background: linear-gradient(135deg, #0097D9, #007bb0); /* Inversión del degradado en hover */
    color: #fff;
}

/*** END MENU **/




/** para la portada **/

/* Div principal con fondo */
.portada_principal-container {
    background-color: #0097D9; /* Fondo principal */
    padding: 40px;
    
}

/* Div interno para ajustar el contenido */
.portada_principal-content {
    max-width: 1200px; /* Max-width para el contenido */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #fff;
}

/* Margen izquierdo con mejor diseño */
.portada_principal-left {
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
}


/* Contenedor para la frase innovadora */
.portada_principal-hero {
    background-color: #0097D9;
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    width: 100%; /* Asegura que se adapte al div padre */
    box-sizing: border-box; /* Para que el padding no afecte el ancho total */
    margin: 0 auto; /* Centra el contenido si es necesario */
}

.portada_principal-texto h1 {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

.portada_principal-texto p {
    font-size: 18px;
    margin-bottom: 0;
    font-size: 1.25em;
    text-align: left;
    line-height: 30px;
}

/* Contenedor general de las tarjetas */

/* Contenedor principal */
.portada_principal-tarjetas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f0f4f8;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Estilo para las líneas que conectan las tarjetas */
.portada_principal-tarjetas:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background-color: #27bcee;
  z-index: 0;
}

/* Tarjetas individuales */
.portada_principal-tarjeta {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  width: 120px;
  margin: 0 5px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Alinear el contenido al centro */
  justify-content: center; /* Centrar verticalmente */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.portada_principal-tarjeta i {
  font-size: 25px;
  color: #27bcee;
  margin-bottom: 10px;
  transition: color 0.4s ease;
}

.portada_principal-tarjeta:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.portada_principal-tarjeta:hover i {
  color: #003E6E;
}

/* Estilos de texto */
.portada_principal-tarjeta {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  color: #333;
  font-weight: bold;
}





















/* Mejora visual del margen derecho - formulario */
.portada_principal-right {
    flex: 0.5;
    padding: 30px;
    max-width: 400px; /* Formulario más estrecho */
}


/* Contenedor del formulario */
.portada_principal-form {
    background-color: #fff; /* Fondo principal en blanco */
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    color: #333;
}

/* Contenedor del formulario */
.portada_principal-form {
    background-color: #fff; /* Fondo principal en blanco */
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    color: #333;
}

/* Título del formulario */
.portada_principal-form h2 {
    color: #0097D9;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

/* Estilos de los inputs, textarea y select */
.portada_principal-input, .portada_principal-textarea, .portada_principal-input[type="select"] {
    width: 100%; /* Asegura que todos los elementos ocupen el mismo ancho */
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background-color: #f9f9f9;
    color: #333;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    outline: none;
    box-sizing: border-box; /* Incluye padding y borde en el ancho total */
}

/* Estilo específico para el textarea */
.portada_principal-textarea {
    resize: vertical; /* Permite ajustar solo en altura */
}

/* Estilo para los placeholders en inputs y textarea */
.portada_principal-input::placeholder,
.portada_principal-textarea::placeholder {
    color: #999; /* Color suave para el placeholder */
    font-style: italic; /* Cursiva para un estilo más atractivo */
    font-size: 14px;
    opacity: 1; /* Asegura visibilidad en todos los navegadores */
}

/* Placeholder cuando el campo está en focus */
.portada_principal-input:focus::placeholder,
.portada_principal-textarea:focus::placeholder {
    color: #0097D9; /* Cambia a color corporativo cuando el campo está en focus */
    font-style: normal; /* Estilo normal al hacer focus */
}

/* Hover y Focus en los inputs y textarea */
.portada_principal-input:focus, .portada_principal-textarea:focus {
    background-color: #fff;
    outline: 2px solid #0097D9;
    border-color: #0097D9;
}

/* Estilo del botón */
.portada_principal-btn {
    background: linear-gradient(135deg, #007bb0, #0097D9); /* Degradado en el botón */
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hover simple para el botón */
.portada_principal-btn:hover {
    background: linear-gradient(135deg, #0097D9, #007bb0); /* Cambia el degradado en hover */
}









/*** PARA LOS SERVICIOS DETALLADOS **/

/* Div principal */
.servicios-principal {
    height: 100vh; /* Altura total de la pantalla */
    background: linear-gradient(to bottom, #f0f0f0 50%, #fff 50%); /* Fondo con 50% color y 50% blanco */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Div para el contenido ajustable */
.servicios-contenido {
    max-width: 1200px; /* Ancho recomendado */
    width: 100%;
    padding: 20px;
}






/* Categorías de servicios (íconos) */
.categorias {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* Estilos generales para las categorías */
.categoria-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-bottom: 10px;
    opacity: 0.5; /* Inicialmente todos opacos */
}

.categoria-item i {
    font-size: 40px;
    color: #555; /* Color inicial opaco */
    transition: all 0.3s ease;
}

.categoria-item p {
    font-size: 14px;
    color: #555; /* Color de texto también opaco */
    transition: all 0.3s ease;
}

/* Ítem activo */
.categoria-item.active {
    opacity: 1; /* Ítem activo completamente visible */
    border-bottom: 3px solid #0097D9; /* Border bottom con el color principal */
}

.categoria-item.active i {
    color: #0097D9; /* Color principal en los íconos cuando están activos */
}

.categoria-item.active p {
    color: #0097D9; /* Color principal en el texto cuando está activo */
}

/* Hover en los ítems opacos */
.categoria-item:hover {
    opacity: 0.8;
}











/* Panel de servicio destacado */
.panel-destacado {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}



/* Contenedor principal del servicio */
.servicio-contenido {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  border-radius: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.servicio-texto {
  flex: 1;
  margin-right: 40px;
}

.servicio-texto h2 {
  font-size: 32px;
  color: #003E6E; /* Color principal */
  margin-bottom: 20px;
}

.servicio-texto p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.servicio-texto .icon-list {
  margin-bottom: 30px;
}

.icon-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 18px;
  color: #333;
}

.icon-item i {
  color: #27bcee; /* Color del icono */
  margin-right: 15px;
  font-size: 24px;
}


/* Botón con degradado */
.btn-cta {
  padding: 12px 30px;
  background: linear-gradient(135deg, #007bb0, #0097D9); /* Degradado aplicado */
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #0097D9, #007bb0); /* Inversión del degradado en hover */
}








/* Sección de gráficos */
.servicio-grafico {
    flex: 1;
    text-align: right;
}

.servicio-grafico img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}


















/** para la franja gratis **/

.cont_grat-franja {
    background-color: #0097D9; /* Color de fondo principal */
    color: #fff; /* Color del texto */
    padding: 30px;
    text-align: center;
}

.cont_grat-titulo {
    font-size: 24px; /* Tamaño del título */
    font-weight: bold;
    margin-bottom: 10px;
}

.cont_grat-descripcion {
    font-size: 16px; /* Tamaño de la descripción */
    margin-bottom: 20px;
}

.cont_grat-btn {
    background: linear-gradient(135deg, #007bb0, #0097D9); /* Degradado utilizado */
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cont_grat-btn:hover {
    background: linear-gradient(135deg, #0097D9, #007bb0); /* Inversión del degradado en hover */
}




/*** sobre el equipo de la empresa **/

.equipo-main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.equipo-text-content {
    flex: 1;
    max-width: 40%;
}

.equipo-sub-title {
    color: #00d684;
    font-size: 18px;
    font-weight: bold;
}

.equipo-main-title {
    font-size: 42px;
    margin: 20px 0;
    font-weight: bold;
}

.equipo-description {
    font-size: 18px;
    line-height: 1.8;
    color: #b0b0b0;
}

.equipo-card-container {
    flex: 1;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.equipo-card {
    background-color: #1c1f26;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.equipo-card:hover {
    transform: translateY(-10px);
}

.equipo-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.equipo-name {
    font-size: 22px;
    margin: 10px 0;
}

.equipo-title {
    color: #00d684;
    font-size: 18px;
    margin-bottom: 10px;
}

.equipo-course {
    font-size: 16px;
    color: #b0b0b0;
}






/*** preguntas frecuentes **/

.preguntas_container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #003E6E;
    color: white;
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
}

.preguntas_title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.preguntas_item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.preguntas_header {
    background-color: #27bcee;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    transition: background-color 0.4s ease;
}

.preguntas_header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.preguntas_icon {
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.4s ease;
    color: white;
}

.preguntas_content {
    background-color: white;
    color: #003E6E;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, padding 0.6s ease;
    border-radius: 0 0 10px 10px;
}

.preguntas_content p {
    padding: 15px 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.preguntas_content.open {
    max-height: 300px;
    padding: 20px;
}

.preguntas_header:hover {
    background-color: #1da4d1;
}

.preguntas_item.active .preguntas_icon {
    transform: rotate(45deg); /* Este se mantendrá para la rotación */
    content: "-"; /* Cambiar el símbolo a "-" */
}

.preguntas_icon::before {
    content: "+"; /* Por defecto, el ícono será + */
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.4s ease;
    color: white;
}

.preguntas_header.active .preguntas_icon::before {
    content: "-"; /* Cambia a '-' cuando el div está activo */
}




/*** footer **/
.footer_wrapper {
    background-color: #003E6E;
}

.footer_container {
    width: 100%;
    background-color: #003E6E;
    color: white;
    font-family: Arial, sans-serif;
}

.footer_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.footer_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #1f2b38;
}

.footer_contact, .footer_cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer_button_contact {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 16px;
}

.footer_address {
    color: #cccccc;
}

.footer_button_cta {
    background-color: #0097D9;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.footer_cta a {
    color: #0097D9;
    margin-top: 5px;
    text-decoration: none;
}

.footer_middle {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 40px 0;
}

.footer_column {
    width: 20%;
    margin-bottom: 20px;
}

.footer_column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #0097D9;
}

.footer_column ul {
    list-style: none;
    padding: 0;
}

.footer_column ul li {
    margin-bottom: 10px;
}

.footer_column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer_column ul li a:hover {
    color: #0097D9;
}

.footer_bottom {
    text-align: center;
    padding: 20px;
}

.footer_logo {
    width: 100px;
    margin-bottom: 10px;
}

.footer_bottom p {
    margin: 0;
    font-size: 14px;
    color: #cccccc;
}


.footer_whatsapp {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-bottom: 10px;
}

.footer_whatsapp:hover {
    background-color: #25D366; /* Color de fondo típico de WhatsApp */
    color: white;
}

.footer_whatsapp i {
    margin-right: 10px;
    font-size: 20px;
}



/******************* RESPONSIVE ***********************/


@media (max-width: 768px) {
    
    
    
    /* Responsive: mostrar menú hamburguesa */
    .menu-items {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #0097D9;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .menu-items.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        padding: 10px 0;
    }

    .menu-toggle {
        display: flex;
    }
    
/* END MENU HAMBURGUESA **/




    
    
}


