:root {
    --primary-dark: #000064;
    --primary-light: #000a7a;
    --accent: #06dba8;
    --accent-dark: #05c497;
    --light-bg: #F9FAFB;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
}


/* Fuentes */
.titu_font{
  font-family: 'Space Grotesk', sans-serif;
}

.font_c_v{
    color: #06DBA8;
}
.font_c_az{
    color: #000064;
}
.font_c_bl{
    color: #FFF;
}


.font_s_0_7{ font-size: .7em; }
.font_s_0_8{ font-size: .8em; }
.font_s_0_9{ font-size: .9em; }
.font_s_1{ font-size: 1em; }
.font_s_1_2{ font-size: 1.2em; }
.font_s_1_3{ font-size: 1.3em; }
.font_s_1_5{ font-size: 1.5em; }


.op_elem_10{
    opacity: .1;
}


/* Base Styles */
body p{
    font-family: 'Inter', sans-serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Section Spacing */
section {
/*    padding: 80px 0;*/
}

.section-bg-light {
    background-color: var(--light-bg);
}


/* Nav */
.nav_pers{
    background-color: #FFF;
}
.nav_logo{
    width: auto;
    height: 2em;
}
.hero_logo{
    width: auto;
    height: 4em;
}
.btn_nav_gen{
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #000064;
    transition: all .5s;
}
.btn_nav_gen:hover{
    color: #06DBA8;
}
.btn_nav_cont{
    background-color: #06DBA8;
    font-size: 1em;
    color: #FFF;
    padding: .5em 1.5em;
    margin-left: 1em;
    border: 1px solid #06DBA8;
    border-radius: .5em;
    transition: all .5s;
}
.btn_nav_cont:hover{
    background-color: #FFF;
    color: #06DBA8;
    border: 1px solid #06DBA8;
}

/* Custom Button Styles */
.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
    font-weight: 600;
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--primary-dark);
}

.btn-accent-hero {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    font-weight: 600;
}

.btn-accent-hero:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

.btn-accent-post {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #FFF;
}

.btn-accent-post:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}

.btn-primary {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

.btn-outline-primary {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.btn-outline-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* Hero Section */
/*.hero-section {
    min-height: 100vh;
}*/

.bg-primary-dark {
    background-color: var(--primary-dark);
}

.badge-custom {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-custom::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-image-col {
    min-height: 600px;
}

.hero-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), transparent), url('../img/img_1.png');
    background-size: cover;
    background-position: center;
}

.hero-stats {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 992px) {
    .hero-stats {
        left: auto;
        right: 32px;
        transform: none;
    }
}

.stats-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    min-width: 240px;
    backdrop-filter: blur(10px);
}

.stats-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Section Badges */
.section-badge {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.section-badge::before {
    content: '';
    width: 64px;
    height: 2px;
    background-color: var(--accent);
}

.section-badge-center {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.section-badge-center::before,
.section-badge-center::after {
    content: '';
    width: 64px;
    height: 2px;
    background-color: var(--accent);
}

/* Image Placeholders */
.img-placeholder {
    background-image: url('../img/img_2.png');
    background-size: cover;
    background-position: center center;
    border-radius: 20px;
    overflow: hidden;
}

.img-placeholder-2 {
    background-image: url('../img/img_9.png');
    background-size: cover;
    background-position: center center;
    border-radius: 20px;
    overflow: hidden;
}

.about-img-placeholder {
    aspect-ratio: 4/5;
}

.talks-img-placeholder {
    aspect-ratio: 3/4;
}

/* Cards */
.highlight-card {
    background: linear-gradient(135deg, rgba(6, 219, 168, 0.1), rgba(0, 0, 100, 0.1));
    border: none;
    border-radius: 12px;
}

.back_card_trans{
    background: #ffffff;
    background: linear-gradient(180deg,rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: solid rgba(255, 255, 255, 0.4) 1px !important;
}
.back_v_ico{
    background-color: #06DBA8;
    padding: .3em .8em !important;
    font-size: 1.5em;
}

.option-card {
    border: 2px solid rgba(6, 219, 168, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: var(--accent);
}

.option-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-icon-secondary {
    background: var(--primary-dark);
}
.option-icon-3 {
    background: #FFF;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.bg-accent-light {
    background-color: rgba(6, 219, 168, 0.1);
}

/* Media Section Effects */
.media-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.media-bg-effects::before,
.media-bg-effects::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
}

.media-bg-effects::before {
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background-color: var(--accent);
}

.media-bg-effects::after {
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background-color: var(--accent);
}

.position-relative.z-1 {
    position: relative;
    z-index: 1;
}

/* Service Cards */
.service-card {
    background: var(--primary-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    background: #001485;
    transform: translateY(-4px);
}

.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Testimonial Carousel */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    background: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: none;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--accent);
}

/* Form Styles */
.contact-form .form-control {
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(6, 219, 168, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-accent {
    color: var(--accent) !important;
}

.text-primary {
    color: var(--primary-dark) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.min-vh-85 {
    min-height: 85vh;
}


/* Form mail */
.form_pers{
    background-color: #FFF;
    padding: 1em;
    border-radius: .5em;
}
.btn_send_pers{
    display: inline-block;
    width: 100%;
    text-align: center;
}


/* Footer */
.back_foot{
    background-color: #000064;
}
.foot_logo{
    width: auto;
    height: 4em;
}
.txt_gen_foot{
    color: #FFF;
    font-size: 1em;
}
.link_gen_foot{
    text-decoration: none;
    color: #FFF;
    font-size: 1em;
    filter: opacity(100%);
    transition: all .5s;
}
.link_gen_foot:hover{
    filter: opacity(80%);
    transition: all .5s;
}




/* Notificaciones del formulario */
.form-notification {
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.form-notification.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.form-notification.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Estado de carga del botón */
.btn_send_pers:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}








/* Estilos para el carrusel de testimonios */
#testimonialCarousel {
    position: relative;
    padding-bottom: 60px; /* Espacio para los dots y botones */
}

#testimonialCarousel .carousel-inner {
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: #000064; /* Mantiene el color original */
    border-radius: 50%;
    opacity: 1;
    top: auto;
    bottom: 0;
    transform: none;
    position: absolute;
}

#testimonialCarousel .carousel-control-prev {
    left: 50%;
    margin-left: -150px; /* Posiciona a la izquierda de los dots */
}

#testimonialCarousel .carousel-control-next {
    right: 50%;
    margin-right: -150px; /* Posiciona a la derecha de los dots */
}

#testimonialCarousel .carousel-control-prev i,
#testimonialCarousel .carousel-control-next i {
    color: white;
    font-size: 1.5rem;
}

#testimonialCarousel .carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 50px;
}

#testimonialCarousel .carousel-indicators {
    position: relative;
    margin: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

#testimonialCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0;
    border: none;
    opacity: 1;
}

#testimonialCarousel .carousel-indicators button.active {
    background-color: #06DBA8;
}

/* Ajustes responsive */
@media (max-width: 768px) {
    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    #testimonialCarousel .carousel-control-prev {
        margin-left: -100px;
    }
    
    #testimonialCarousel .carousel-control-next {
        margin-right: -100px;
    }
    
    #testimonialCarousel .carousel-control-prev i,
    #testimonialCarousel .carousel-control-next i {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next {
        width: 30px;
        height: 30px;
    }
    
    #testimonialCarousel .carousel-control-prev {
        margin-left: -100px;
    }
    
    #testimonialCarousel .carousel-control-next {
        margin-right: -100px;
    }
}

/* Para pantallas muy pequeñas, ocultar los botones */
@media (max-width: 400px) {
    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next {
        display: none;
    }
}















/* Stories & Testimonials */

.secc_1{
    background-color: #000064;
}
.cont_img_sto{
    border-radius: 1em;
    overflow: hidden;
}
.txt_stotes_nom{
    font-size: 1em;
    color: #FFF;
    font-weight: 600;
    margin: 0;
    margin-left: 20px;
}
.txt_stotes_tit{
    font-size: .8em;
    color: #FFF;
    margin: 0;
    margin-left: 20px;
}
.card_pers{
    border-radius: .7em;
    box-shadow: 1px -2px 14px -6px rgba(0,0,0,0.34);
    -webkit-box-shadow: 1px -2px 14px -6px rgba(0,0,0,0.34);
    -moz-box-shadow: 1px -2px 14px -6px rgba(0,0,0,0.34);
}
.txt_testimonial{
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    font-weight: 300;
}





.back_f_v{ background-color: #06DBA8; }
.back_f_az{ background-color: #000064; }

.ico_talks{
    font-size: 1.3em;
    padding: .5em .7em;
    border-radius: .5em;
}



.colors_emphasis_pers{
    background-color: #E8FBF4 !important;
    border-left: 5px solid #06DBA8 !important;
    border-radius: .5em;
}



@media (max-width: 767px) {
    #mi-grid {
        grid-template-columns: 1fr !important;
    }
}





.solo_esp_active{
    display: list-item !important;
}
.solo_esp_inactive{
    display: none !important;
}







