@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root{

    --btn-color: #fdfdfd;/* button color*/
    --btn-bg: #00919a;/* button bg color*/

    --primary-text-color: #003F4F;
    --link-hover: #00919a;
    --input-hover-bd-color: #00919a;
}


html {
    scroll-behavior: smooth;
    font-family: "Plus Jakarta Sans", sans-serif;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: white;
}


header > .collapsible-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: inherit;
    place-content: center;
    overflow: hidden;
    transition: width 0.3s ease;
}

.animated-collapse{
    transition: width 0.3s ease;
}

.header-gradient{
    background: rgb(206,174,212);
    background: linear-gradient(83deg, #ceaed474 15%, #abd4e693 33%, #73edc097 79%, #8c91e86b 100%);
    filter: blur(100px);
}

.header-links {
    display: flex;
    align-items: center;
    min-width: fit-content;
    border-radius: 10px;
    padding: 5px 10px;
    transition: background-color 0.5s, color 0.5s;
    color: #003F4F;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
}


.header-links:hover {
    color: var(--link-hover);
}

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

.opacity-0{
    opacity: 0 !important;
}

.opacity-100{
    opacity: 100 !important;
}

.btn{
    padding: 12px 24px;
    width: max-content;
    border-radius: 9999px; /* pill shape */
    color: var(--btn-color);
    background-color: var(--btn-bg);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    background-color: #00919a;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover{
    transform: scale(1.05);
}

.btn:disabled{
    cursor: default;
}

.input{
    padding: 10px;
    background-color: transparent;
    border-radius: 25px;
    /* outline: none; */
    min-width: 100px;
    border: 2px solid #818080;
    /* transition: border 0.3s; */
}

.input:active, .input:focus, .input:focus-within{
    border: 2px solid var(--input-hover-bd-color);
}

.input-error{
    border-bottom: 3px solid #ff1e1e;
}

.input-error:focus-within{
    border-bottom: 3px solid #fd0101;
}

/* Navigation dots styling */
.dots-container {
    text-align: center;
    margin-top: 20px;
}

.footer-link{
    color: #0d0d0d;
    transition: color 0.3s;
}

.footer-link:hover{
    color: #483cf4;
}


.review-container {
    position: relative;
    max-width: 600px;
    margin: auto;
}

.review-card{
    box-shadow: 0px 2px 4px #757474a0;
    border-radius: 15px;
    /* width: 200px; */
    /* height: 550px; */
    padding: 10px;
}

/* Features section */
.features {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features .section-header {
    margin-bottom: 60px;
}

.features .section-title {
    font-size: 38px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.features .section-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-text-color);
    margin-bottom: 25px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: rgba(0, 145, 154, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .features .section-title {
        font-size: 32px;
    }

    .features .section-description {
        font-size: 16px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        font-size: 40px;
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 15px;
    }
}
.collapsible {
    background-color: #f1f1f1;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: background-color 0.5s;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content {
    padding: 0 18px;
    /* display: none; */
    height: 0px;
    overflow: hidden;
    background-color: transparent;
    transition: height 0.5s;
    text-align: justify;
    margin-top: 10px;
}

.collapsible .active,
.collapsible:hover {
    /* background-color: #dedddd; */
}

@media not all and (min-width: 1024px) {
    header .collapsible-header {
        position: fixed;
        right: 0px;
        flex-direction: column;
        opacity: 0;
        height: 100vh;
        min-height: 100vh;
        height: 100dvh;
        width: 0vw;
        justify-content: space-between;
        padding: 5px;
        padding-top: 5%;
        padding-bottom: 5%;
        place-items: end;
        background-color: #ffffff;
        color: #000000;
        overflow-y: auto;
        box-shadow: 2px 0px 3px #000;
    }

    .header-links{
        color: black;
    }
    
}
.partner-logo {
    height: 200px;
    width: auto;
    opacity: 1;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}


/* Sección estándar para unificar tamaños y espacios entre secciones */
.site-section {
    padding-top: 64px;
    padding-bottom: 64px;
    width: 100%;
    box-sizing: border-box;
}

.site-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .site-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* Estilos para el logo en el header */
.header-logo {
    height: 60px;
    width: auto;
    max-height: 60px;
    display: block;
}

@media (max-width: 768px) {
    .header-logo {
        height: 48px;
        max-height: 48px;
    }
}


.partners-section {
    margin-bottom: var(--space-3);
}

.partner-logo {
    height: 200px;
    width: auto;
    opacity: 1;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 4rem 1rem;
    }
    .hero-section > div {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-section .tw-text-5xl {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    .hero-section .tw-text-xl {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1rem;
    }
    .hero-section .tw-text-5xl {
        font-size: 2rem;
    }
}

