:root{
    --border-radius: 5px;
    --primary-color: #2C3E50;
    --background-color: white;
    --accent-color: #249528;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--background-color);
    color: var(--primary-color);
    font-family: "Outfit", sans-serif;
    padding: 0vw 4vw;
    font-size: 1rem;
}

button{
    margin-top: 30px;
    padding: 15px 25px;
    font-family: "Outfit";
    border-radius: var(--border-radius);
    transition: 0.2s ease;
    font-weight: 500;
    outline: none;
    width: 100%;
}

button:hover{
    background-color: var(--accent-color);
    cursor: pointer;
    outline: none;
    color: var(--background-color);
}

@media (min-width: 767px) {
    button{
        width: fit-content;
    }
}

h1, h2, h3, h4, h5, h6 {
    margin: 0px;
    margin-bottom: 0px;
    line-height: 1.1em;
}

h1{
    font-size: 4rem;
}

h2{
    font-size: 3rem;
}

h3{
    font-size: 1.2rem;
    font-weight: 600;
}

p{
    margin: 10px 0px;
}

a{
    color: var(--accent-color);
}

#logo{
    max-height: 50px;
    font-family: 'Faster One';

}

.navbar-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.by-eficost {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0px;
}

.eficost-logo{
    max-width: 120px;
}

.section{
    padding: 50px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 90ch;
    width: 100%;
}

.wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

.is-hero-section{
    margin-top: 50px;
    min-height: 60vh;
}

#hero-image {
    max-width: 70%;
    align-self: center;
}

.margin-bottom-50px{
    margin-bottom: 50px;
}

.section-title{
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 30px;
}

.accent-text{
    color: var(--accent-color)
}

.icon-list-item{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

.icon {
    color: var(--primary-color);
    margin-top: 5px;
}

.subtitle-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    text-align: center;
    margin-bottom: 20px;
}

.line{
    background-color: var(--primary-color);
    width: 5vw;
    height: 2px;
    max-width: 50px;
}

.subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* ----- SWIPER JS ----- */

.is-brands-card.swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;     /* ventana del carrusel, esto es lo correcto en Swiper */
}

.brands-wrapper{
    padding: 30px 0;
    max-width: 84vw;
}

/* Imagen dentro de la slide */
.brand img {
    max-width: 100%;
    width: 120px;          /* ajusta a tu gusto */
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}


/* ----- FIN SWIPER JS ---- */

.big-number{
    font-size: 5rem;
    font-weight: 800;
}

.hero-header{
    color: var(--primary-color);
}

.card-wrapper{
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .card-wrapper{
        grid-template-columns: repeat(3, 1fr);
    }
}

.card{
    border: 0px;
    border-radius: var(--border-radius);
    background: #00000010;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.is-icon-card{
    display: flex;
    flex-direction: column;
    padding: 2rem;
    align-items: start;
    text-align: left;
}

.card-header{
}

.is-card-icon{
    max-width: 2rem;
}

.icon-wrapper{
    height: 38px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.is-two-column-section {
    gap: 0px
}

.is-text-column-wrapper, .is-image-column-wrapper{
    margin-bottom: 20px;
}

.image-wrapper img{
    max-width: 100%;
    max-width: 300px;
}

.is-iframe-wrapper{
}

#my-cal-inline-30min {
    width: 100%;
}

#my-cal-inline-30min iframe {
    width: 100% !important;
}

/*----------- RESPONSIVE -------------*/

@media (min-width: 1024px) {
    .is-two-column-section {
        flex-direction: row;
        gap: 50px;
    }
    .is-text-column-wrapper {
        width: 80%;
        text-align: left;
        align-items: start;
    }

    .is-image-column-wrapper {
        width: auto;
    }

}

@media (max-width: 1024px){
        .desktop-only{
        display: none;
    }
}

@media (max-width: 767px) {
    h1{ font-size: 3rem; }
    h2{ font-size: 2rem; }
    .is-hero-section {
        margin-top: 0px;
    }
}
