.elementor-5945 .elementor-element.elementor-element-c8d438e{--display:flex;border-style:none;--border-style:none;}.elementor-5945 .elementor-element.elementor-element-c8d438e.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-5945 .elementor-element.elementor-element-9eb4b7e{width:var( --container-widget-width, 102.068% );max-width:102.068%;--container-widget-width:102.068%;--container-widget-flex-grow:0;}.elementor-5945 .elementor-element.elementor-element-9eb4b7e > .elementor-widget-container{padding:0px 0px 0px 0px;border-style:none;border-radius:0px 0px 0px 0px;}.elementor-5945 .elementor-element.elementor-element-9eb4b7e.elementor-element{--flex-grow:0;--flex-shrink:0;}html, body{overflow-x:auto;}body.elementor-page-5945{margin:0px 0px 0px 0px;}@media(max-width:1024px){.elementor-5945 .elementor-element.elementor-element-9eb4b7e{width:var( --container-widget-width, 1100px );max-width:1100px;--container-widget-width:1100px;--container-widget-flex-grow:0;}}@media(min-width:768px){.elementor-5945 .elementor-element.elementor-element-c8d438e{--width:173.182%;}}@media(max-width:1024px) and (min-width:768px){.elementor-5945 .elementor-element.elementor-element-c8d438e{--width:1038px;}}/* Start custom CSS for html, class: .elementor-element-9eb4b7e *//*
gris : #505050
boton principal : #00aa85
verde global : #00aa86
morado boton cta : #4bb2dd
gris navbar : #dcd4d2
*/



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    font-family: 'DMSans';
    color: #505050;
    
    
}

.mi-fondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.circulo-wrapper {
    width: 100%;
    display: flex;
}

.circulo-izq {
    margin-top: -100px;
    margin-left: auto;
    margin-right: 0;
}

.circulo-der {
    margin-top: -250px;
    margin-left: 0;
    margin-right: auto;
}


@media (max-width: 768px) {
    .circulo-wrapper {
        margin-bottom: 20px; /* Menor espacio entre SVGs */
    }

    .circulo-izq,
    .circulo-der {
        width: 200px;
        height: auto;
        margin-top: -50px;
    }
}


main, section, .hero-header, .card-container, .section-info,
.section-process, .section-acercade, .cta-section {
    position: relative;
    z-index: 1;
}


/*Navbar*/
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f2eeed;
    padding: 1.5rem 2rem;
    position: sticky;
    font-family: DMSans;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: #505050;
    font-weight: 500;
}


.nav-links a:hover,
.dropdown-menu a:hover,
.nav-links a:focus{
    color: #00aa86 !important;
}

.contact-btn a {
    color: #ffffff;
}


body .contact-btn {
    background-color: #4bb2dd;
    font-size: 1rem;
    border: none;
    padding: 0.7rem 0.7rem;
    border-radius: 20px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    transition:  transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0.4px 8px rgba(0, 0, 0, 0.15);
    background-color: #4bb2dd;
    color: #ffffff;
}


/* Hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
    background: transparent;
    -webkit-tap-highlight-color: transparent; /* iOS */
}

.menu-toggle:focus,
.menu-toggle:active,
.menu-toggle:hover{
    background: transparent !important;
    box-shadow: none;
    outline: none;
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background-color: #505050;
    margin: 4px 0;
}



/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f2eeed;
    padding: 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 200;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    pointer-events: auto;
}

.dropdown.show .dropdown-menu{
        max-height: 500px;
        opacity: 1;
        pointer-events: auto;
        display: flex;
    }

.dropdown-menu a {
    text-decoration: none;
    color: #505050;
    font-weight: 500;
}

.dropdown-menu a:hover {
    padding-left: 0.5rem; /* opcional, efecto visual sutil */
    transition:  padding 0.3s ease;
    color: #505050;
}




/* Responsive */
@media (max-width: 768px) {

    .dropdown-menu {
        position: static;
        display: none;
        padding-left: 1rem;

    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        width: 50%;
        background-color: #f2eeed;
        padding: 2rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 99;
        flex-direction: column;
        gap: 2em;
        color: #505050;

        /*Animacion*/
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.4s ease;
    }

    .nav-links.show {
        max-height: 100vh;
        opacity: 1;
        padding: 2rem;
        
    }
    .menu-toggle {
        display: flex;
        
    }

}


/* Carrusel */
.hero-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-slide {
    display: none;
    animation: fade 0.5s ease-in-out;
}

.hero-slide.active {
    display: block;
}

/* Animación de entrada */
@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Flechas navegación */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #505050;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-family: 'DMSans';
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: background 0.3s;
}
.arrow:hover {
    background-color: #3b3b3b;
}
.arrow.left {
    left: 20px;
    background: transparent;
    color: #00aa85;
}
.arrow.right {
    right: 20px;
    background: transparent;
    color: #00aa85;
}

/* Header (contenido de cada slide) */
.hero-header {
    padding: 80px 70px 70px;
    background: transparent;
    text-align: left;
    max-width: 100vw;
    font-family: 'DMSans';
}

.h2-header {
    font-size: 3.5rem;
    color: #505050;
    margin-bottom: 20px;
    text-align: left;
}

.h3-subtitle {
    font-size: 2rem;
    color: #505050;
    margin-bottom: 20px;
    text-align: left;
}

.hero-header p {
    font-size: 1.2rem;
    color: #505050;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 500;
    max-width: 600px;
    text-align: left;
}

.hero-header .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #00aa85;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.hero-header .btn:hover {
    transform: scale(1.05);
    box-shadow: 0.4px 14px rgba(0, 0, 0, 0.15);
}

/* Responsive móvil */
@media (max-width: 768px) {
    .hero-header {
        padding: 60px 20px 40px;
        text-align: center;

    }

    .h2-header {
        font-size: 2rem;
        text-align: center;
    }

    .h3-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .hero-header p {
        font-size: 0.95rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-header .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .arrow {
        font-size: 0.7rem;
        padding: 8px 12px;
    }
    
    .arrow.left {
        font-size : 1.5rem;
    }

    .arrow.right {
        font-size: 1.5rem;
    }
}









/* Cards */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 40px;
    font-family: 'DMSans';
}

.card {
    flex: 1 1 calc(33.33% - 16px);
    max-width: 280px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card img {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.card h3 {
    margin: 12px 0 8px;
    font-size: 1.2rem;
    color: #505050;
    text-align: left;
}

.card p {
    font-size: 1rem;
    text-align: left;
    color: #505050;
    margin-bottom: 40px;
}


.card .tittle-with-logo {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: #505050;
}

.card .logo-letter {
    width: 18px;
    height: auto;
    vertical-align: baseline;
    margin-right: 5px;
}


.btn-wsp {
    display:  inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 12px;
    background-color: #4bb2dd;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    border-radius: 100px;
    transition: background 0.3s ease;
    width: fit-content;
}

.btn-wsp img {
  width: 25px;
  height: 25px;
  display: inline-block
}

.btn-wsp:hover {
  background-color: #1eb85b;
  color: #ffffff
}



/* cta-section */
.cta-section {
    text-align: center;
    padding: 50px 20px;
}

.cta-section h4 {
    font-size: 1.5rem;
    color: #505050;
    margin-bottom: 30px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #505050;
    margin-bottom: 30px;
}


/* cta-section */
.cta-section {
    text-align: center;
    padding: 50px 20px;
}

.cta-section h4 {
    font-size: 2rem;
    color: #505050;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #505050;
    margin-bottom: 30px;
}







/* Section 1 */
.section-info {
    padding: 60px 70px;
    text-align: left;
    font-family: 'DMSans';
        background-color: transparent;
    background-image:
        radial-gradient(#d0ece4 2px, transparent 2px),
        radial-gradient(#e0f4fc 2px, transparent 2px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    z-index: 100;
}

.section-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #505050;
}
.section-info p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 40px;
}

.cards {
    flex: 1 1 calc(33.33% - 16px);
    max-width: 400px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

.cards:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.cards h3 {
    margin: 5px 0 8px;
    font-size: 1.5rem;
    color: #505050;
    text-align: left;
}

.cards p {
    font-size: 1rem;
    text-align: left;
    color: #505050;
    margin-bottom: 20px;
}

.btn-wsp {
    display:  inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 12px 12px;
    background-color: #4bb2dd;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    border-radius: 100px;
    transition: background 0.3s ease;
    width: fit-content;
}

.btn-wsp img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.btn-wsp:hover {
  background-color: #1eb85b;
}



/*esponsive*/
@media (max-width: 768px) {
    .section-info {
        padding: 40px 20px;
        text-align: center;
    }

    .section-info h3 {
        font-size: 1.6rem;
    }

    .section-info p {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .cards-container {
        padding: 20px 0;
        gap: 20px;
    }

    .cards {
        flex: 1 1 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .cards h3, .cards p {
        text-align: center;
    }

    .btn-wsp {
        margin: 0 auto;
    }
}




/* Section 2 */
.section-info-cards {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 70px;
    gap: 40px;
    font-family: 'DMSans';
    flex-wrap: wrap;
}


.tittle-with-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: #505050;
    gap: 1px;
}

.logo-letter {
    margin-top: 2px;
    width: 21px;
    height: auto;
    object-fit: contain;
    vertical-align:  middle;
}

.cards-info{
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info{
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 100px;
}

.info p {
    font-size: 1.1rem;
    color: #505050;
    line-height: 1.6;

}
.cards-info .cards {
    max-width: 100%;
}

@media (max-width: 768px) {
  .section-info-cards {
    flex-direction: column;
    padding: 40px 20px;
  }

  .cards-info, .info {
    flex: 1 1 100%;
  }
}



/* Section 3 */
.section-process {
    padding: 60px 70px;
    text-align: left;
    font-family: 'DMSans';
    background-color: transparent;
    background-image:
        radial-gradient(#d0ece4 2px, transparent 2px),
        radial-gradient(#e0f4fc 2px, transparent 2px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.section-process-title{
    width: 50vw;
    margin-bottom: 50px;
}

.section-process-title h3{
    font-size: 2rem;
    color: #505050;
    margin-bottom: 20px;
}

.section-process-title p{
    font-size: 1.1rem;
    color: #505050;
    line-height: 1.6;
}

.section-process-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.section-process-cards .cards {
    max-width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
}

.section-process-cards .cards img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.section-process-cards .cards p {
    font-size: 1.1rem;
    color: #505050;
    text-align: center;
    margin: 0;
}


@media (max-width: 768px) {
    .section-process {
        padding: 40px 20px;
        text-align: center;
    }

    .section-process-title {
        width: 100%;
        margin-bottom: 30px;
    }

    .section-process-title h3 {
        font-size: 1.6rem;
    }

    .section-process-title p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .section-process-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .section-process-cards .cards {
        width: 100%;
        max-width: 300px;
        height: auto;
        padding: 20px;
    }

    .section-process-cards .cards img {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .section-process-cards .cards p {
        font-size: 1rem;
    }
}




/* Section 4 */
.section-acercade{
    padding: 60px 70px;
    text-align: left;
    font-family: 'DMSans';
}

.section-acercade h3 {
    font-size: 2rem;
    color: #505050;
    margin-bottom: 20px;
}

.section-acercade  p {
    font-size: 1.1rem;
    color: #505050;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cards-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.about-slide {
    position: absolute;
    width: 700px;
    height: auto;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}


.about-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

/* Responsive - Sección Acerca de */
@media (max-width: 768px) {
    .section-acercade {
        padding: 40px 20px;
        text-align: center;
    }

    .section-acercade h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .section-acercade p {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .cards-img {
        flex-direction: column;
        position: relative;
        width: 100%;
        padding: 0;
    }

    .about-slide {
        width: 90%;
        max-width: 350px;
        transform: translateX(0); /* No desplazamiento lateral */
        margin: 0 auto;
    }

    .arrow.left {
        left: -5px;
        font-size: 1rem;
    }

    .arrow.right {
        right: -5px;
        font-size: 1rem;
    }
}



/*Section 5*/
.subscribe-form {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.subscribe-form input[type="email"] {
    padding: 10px 14px;
    border: 1px solid #505050;
    border-right: none;
    border-radius: 20px 0 0 20px;
    font-size: 1rem;
    width: 300px;
    outline: none;
    background: transparent;
}

.subscribe-form input[type="email"]:hover,
.subscribe-form input[type="email"]:focus{
    border: 1px solid #00aa86;
}

.subscribe-form button {
    padding: 15px;
    font-family: 'DMSans';
    background-color: #00aa86;
    color: #ffffff;
    border: none;
    border-radius: 0 20px 20px 0;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-form button:hover,
.subscribe-form button:focus{
    background-color: #00aa85;
}



@media (max-width: 480px) {
    .subscribe-form {
        flex-direction: column;
        align-items: stretch;
    }

    .subscribe-form input[type="email"] {
        border-radius: 20px;
        width: 100%;
        border-right: 1px solid #505050;
        margin-bottom: 10px;
    }

    .subscribe-form button {
        border-radius: 20px;
        width: 100%;
    }
}


/* Alert */
.mi-boton-swal {
  background-color: #00b894 !important; /* verde menta */
  color: white !important;
  font-size: 1.1rem !important;
  font-family: 'DMSans'!important;
  padding: 20px 35px !important;
  border-radius: 50px !important;
  border: none !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.mi-boton-swal:hover {
  background-color: #019874 !important;
}

.i-boton-swal-x{
    color: white !important;
    font-size: 1.1rem !important;
    font-family: 'DMSans'!important;
    padding: 20px 35px !important;
    border-radius: 50px !important;
    border: none !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

/*Footer*/

.footer {
    background-color: #505050;
    color: #ffffff;
    padding: 2.5rem 2rem 1rem;
    font-family: 'DMSans';
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

body .footer-column h4 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;

}

.footer-column a {
    text-decoration: none;
    color: #ffffff;
    transition: color .3s ease;
}

.footer-column a:hover {
    color: #dcd4d2;
}

.footer-logo {
    width: 120px;
    margin-bottom: 1rem;
}

.footer-bottom {
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.8rem;
    align-items: center;
    gap: 2rem;
    font-size: 0.9rem;
}

.footer-bottom a {
    text-decoration: none;
    color: #ffffff;
    margin: 0 0.5rem;
}



.footer-social img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    object-fit: contain;
    margin: 0.3rem;
}

.footer-column .logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: #ffffff;
  gap: 2px;
}

.footer-column .letter {
  width: 0.9em;  /* Escala con el tamaño del texto */
  height: auto;
  object-fit: contain;
}


@media (max-width: 768px) {
    .footer {
        padding: 2rem 1.5rem 1rem;
        font-size: 0.75rem;
        text-align: center;
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-column {
        width: 45%; /* dos columnas por fila */
        min-width: 140px;
        text-align: center;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .footer-column a {
        font-size: 0.75rem;
    }

    .footer-column .logo {
        display: flex;
        align-items: center;
        justify-content: center; /* Agrega esto */
        font-size: 1.5rem;
        color: #ffffff;
        gap: 2px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        font-size: 0.75rem;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-social img {
        width: 20px;
        height: 20px;
    }
}/* End custom CSS */

