.elementor-6017 .elementor-element.elementor-element-2c7c878{--display:flex;}.elementor-6017 .elementor-element.elementor-element-2c7c878.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-6017 .elementor-element.elementor-element-af8ffa3{width:var( --container-widget-width, 102.802% );max-width:102.802%;--container-widget-width:102.802%;--container-widget-flex-grow:0;}.elementor-6017 .elementor-element.elementor-element-af8ffa3 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;border-style:none;}.elementor-6017 .elementor-element.elementor-element-af8ffa3.elementor-element{--flex-grow:0;--flex-shrink:0;}html, body{overflow-x:auto;}@media(min-width:768px){.elementor-6017 .elementor-element.elementor-element-2c7c878{--width:101.188%;}}@media(max-width:1024px) and (min-width:768px){.elementor-6017 .elementor-element.elementor-element-2c7c878{--width:941px;}}/* Start custom CSS for html, class: .elementor-element-af8ffa3 *//*
gris : #505050
boton principal : #00aa85
verde global : #00aa86
morado boton cta : #4bb2dd
gris navbar : #dcd4d2
*/



/* Estira todo el layout al ancho completo */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}



.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;
}

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;
    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;
}

/* Hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
    background: transparent;
}

.menu-toggle:hover {
     background: transparent;
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background-color: #505050;
    margin: 4px 0;
}

.menu-toggle:focus,
.menu-toggle:active,
.menu-toggle:hover{
    background: transparent !important;
    box-shadow: none;
    outline: none;
}


/* 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;
        
    }

}







.hero-header {
    font-family: DMSans;
    padding: 60px 40px 60px;
    background: transparent;
    text-align: left;
    max-width: 100vw;
    font-family: 'DMSans';
}

.hero-header h2 {
    font-size: 3rem;
    color: #505050;
    margin-bottom: 20px;
}

.hero-header p {
    font-size: 1rem;
    color: #505050;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 500;
}

.hero-header .btn{
    display: inline-block;
    padding: 12px 24px;
    background-color: #00aa85;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.5rem;
    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);
}


@media (max-width: 768px) {
    .hero-header {
        padding: 40px 20px;
        text-align: center;
    }

    .hero-header h2 {
        font-size: 2rem;
    }

    .hero-header p {
        font-size: 0.95rem;
    }

    .hero-header .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}







.card-container {
    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;
    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;
    object-fit: contain;
    vertical-align: middle;  
    margin-right: 5px;
    transform: translateY(5.2px);
}


.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;
  object-fit: contain;
  padding-top: 9px;
}

.btn-wsp:hover {
  background-color: #1eb85b;
  color: #ffffff;
}



.wrapper {
    max-height: 100%;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1;
}

/* header */


/* 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;
}



@media (max-width: 768px) {
    .cta-section {
        padding: 30px 15px;
    }

    .cta-section h4 {
        font-size: 1.4rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .subscribe-form {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 10px;
    }

    .subscribe-form input[type="email"] {
        width: 100%;
        border-radius: 20px;
        border-right: 1px solid #505050; /* restaurar el borde derecho */
    }

    .subscribe-form button {
        width: 100%;
        border-radius: 20px;
        padding: 12px;
        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;
  transform: translateY(-1px)
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1.5rem 1.5rem;
        font-size: 0.8rem;
        background-color: #505050;
        text-align: center;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-bottom: 1rem;
    }

    .footer-column {
        width: 100%;
        text-align: center;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
        color: #ffffff;
    }

    .footer-column a {
        font-size: 0.85rem;
        color: #ffffff;
        display: block;
        margin-bottom: 0.2rem;
        text-decoration: none;
    }

    .footer-column a:hover {
        color: #00aa86;
    }
    
    .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-align: center;
}


    .footer-logo {
        width: 120px;
        margin: 0 auto 1rem;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        font-size: 0.75rem;
        color: #777;
        border-top: 1px solid #ddd;
        padding-top: 1rem;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .footer-social img {
        width: 24px;
        height: 24px;
        filter: grayscale(100%);
        transition: filter 0.3s ease;
    }

    .footer-social img:hover {
        filter: none;
    }
}/* End custom CSS */

