﻿/* lora-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  src: url('../../assets/fonts/lora-v37-latin-regular.woff2') format('woff2');
}
/* lora-500 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Lora';
  font-style: normal;
  font-weight: 500;
  src: url('../../assets/fonts/lora-v37-latin-500.woff2') format('woff2');
}
/* lora-500italic - latin */
@font-face {
  font-display: swap;
  font-family: 'Lora';
  font-style: italic;
  font-weight: 500;
  src: url('../../assets/fonts/lora-v37-latin-500italic.woff2') format('woff2');
}
/* lora-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Lora';
  font-style: normal;
  font-weight: 600;
  src: url('../../assets/fonts/lora-v37-latin-600.woff2') format('woff2');
}
/* lora-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Lora';
  font-style: normal;
  font-weight: 700;
  src: url('../../assets/fonts/lora-v37-latin-700.woff2') format('woff2');
}



/* inter-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('../../assets/fonts/inter-v20-latin-regular.woff2') format('woff2'); 
}
/* inter-500 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('../../assets/fonts/inter-v20-latin-500.woff2') format('woff2');
}
/* inter-600 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('../../assets/fonts/inter-v20-latin-600.woff2') format('woff2');
}
/* inter-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../../assets/fonts/inter-v20-latin-700.woff2') format('woff2');
}
/* inter-800 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('../../assets/fonts/inter-v20-latin-800.woff2') format('woff2'); 
}
/* inter-900 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url('../../assets/fonts/inter-v20-latin-900.woff2') format('woff2');
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    background: var(--bg-page);
    min-height: 300vh;
}

.overlay{
    position: fixed;
    inset: 0;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 11;
    display: none;
}

h1,
h2,
h3{
    font-family: "Lora", serif;
}

h1{
    color: var(--color-heading);   
    font-size: clamp(2rem, 1.8vw + 1rem, 4rem);
    line-height: 1.2;
}

h2{
    color: var(--color-secondary);
    font-size: clamp(2rem, 1vw + 1.2rem, 3rem);
}

h3{
    color: var(--color-tertiary);
    text-wrap: balance;
    font-size: clamp(1.4rem, 1vw + 0.4rem, 2rem)
}


p,
a,
button,
li,
small{
    font-family: "Inter", sans-serif;
    color: var(--color-default);
}

p{
    line-height: 1.3;
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}

.contrast{
    background: var(--color-surface);

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;
}


main{ 

    section{
        padding: var(--section-padding) 1rem;
        margin: var(--section-margin) 0;
        scroll-margin-top: 80px
    }

}

:root{
    /* Container */
    --container-width: 1280px;
    --container-padding: 1rem;

    --section-padding: 3rem;
    --section-margin: 2rem;


    /* Colors */
    --bg-page: #F0F1EB;
    --color-surface: linear-gradient(
        to right, #075C69, #0A7484
    );
    --color-surface-light: rgba(10, 116, 132, 0.2);
    --color-surface-md: #0A7484;
    --color-heading: #34393F;
    --color-secondary: #02353C;
    --color-tertiary: #1E332F;
    --color-default: #515355;
    --color-default-dark: #353232;
    --color-white: #FFFFFF;
    --color-success: #2F7A0A;

    /* Font-sizes */
    --font-size-sm: 0.7rem;
    --font-size-md: 1rem;
    --font-size-bg: 1.2rem;

    /* Border-radius */
    --border-sm: 12px;
    --border-max: 999px;


    /* Gaps */
    --gap-sm: 8px;
    --gap-md: 1rem;

    
    /* Box-shadow */
    --shadow-light: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    --shadow-sm: 0 7px 7px 0 rgba(0 0 0 / 0.15);
}

.btn {
    background: var(--color-surface);
    padding: 12px 2rem;
    color: var(--color-white);
    gap: var(--gap-sm);
    box-shadow: var(--shadow-sm);
    max-width: 320px;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.btn:hover{
    opacity: 0.9 !important;
}

.border-sm {
    border-radius: var(--border-sm);
}

.border-max {
    border-radius: var(--border-max);
}

.title-section {
    text-align: center;
    margin-bottom: 3rem;

    p {
        margin-top: 4px;
        text-wrap: balance;
    }
}

.cta-whatsapp {
    margin: 0 auto;
}

.block-cta {
    max-width: 720px;
    width: 100%;
    background: #FFF;
    margin: 3rem auto 0;
    border-radius: var(--border-sm);
    padding: 2rem;

    h3 {
        text-align: center;
        color: var(--color-default);
    }

    a {
        width: 100%;
        gap: var(--gap-sm);
    }
}

@media (max-width: 500px) {
    .block-cta {
        padding: 2rem 1rem;

        h3 {
            font-size: 1.2rem;
        }

        a {
            padding: 10px;
        }
    }
}

.modalImage {
    max-width: 900px;
    width: calc(100% - 2rem);
    max-height: calc(100dvh - 2rem);
    padding: 0;
    border: none;
    margin: auto;
    background: none;
    outline: none;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;

    transition:
        opacity 250ms ease,
        visibility 250ms ease;

    &.is-open {
        opacity: 1;
        visibility: visible;

        img,
        .close-modal-image {
            transform: scale(1);
        }

        .close-modal-image {
            opacity: 1;
        }
    }


    .close-modal-image {
        position: absolute;
        top: 10px;
        right: 10px;
        padding: 8px;
        border-radius: var(--border-max);
        display: grid;
        place-items: center;
        cursor: pointer;
        background: rgba(0, 0, 0, 0.40);
        border: 1px solid rgba(250, 250, 250, 0.30);
        color: #FFF;
        z-index: 3;
        opacity: 0;

        transition:
            opacity .6s ease;
    }

    img {
        display: block;
        max-width: 100%;
        max-height: calc(100dvh - 2rem);
        width: auto;
        height: auto;
        margin: auto;
        object-fit: contain;
        border-radius: var(--border-sm);
        transform: scale(0.9);
        transition: transform 250ms ease;
    }

}

.modalImage::backdrop {
    background: rgba(0, 0, 0, 0.6);
}

header {

    .menu-mobile,
    .close-menu-mobile {
        background: none;
        color: var(--color-default);
        cursor: pointer;
        border: none;
        display: flex;
        padding: 4px;

        display: none;
    }

    .close-menu-mobile {
        display: flex;
        position: absolute;
        top: 15px;
        right: 15px;
    }

    #navbar {
        background: #FFFFFF;
        padding: 1.6rem;
        position: fixed;
        width: 100%;
        z-index: 10;

        .logo {
            gap: 8px;

            span {
                font-family: "Lora", serif;
                font-weight: 500;
                font-size: 1.2rem;
            }
        }

        .navigation {

            a {
                transition: color 0.3s ease, opacity 0.6s ease;
            }

            a:hover {
                color: var(--color-surface-md);
            }

        }
    }

    #sidebar {
        position: fixed;
        top: 0;
        right: 0;
        padding: 120px 2rem;
        height: 100dvh;
        z-index: 12;
        background: #FFFFFF;
        border-left: 1px solid rgba(0, 0, 0, 0.15);
        transform: translateX(320px);
        transition: transform 0.4s ease-in;

        &.is-open {
            transform: translateX(0);
        }

        ul {
            gap: 1.4rem;

            li {
                border-bottom: 1px solid rgba(0, 0, 0, .1);
                padding-bottom: 1rem;

                a {
                    display: inline-block;
                    width: 100%;
                }
            }

            li:last-child {
                border-bottom: none;
                padding-bottom: none;
            }
        }
    }

    .hero {
        width: 100%;
        min-height: 100vh;
        background: url('../../assets/bg-hero.webp');
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        overflow: hidden;

        >* {
            position: relative;
            z-index: 3;
        }

        .logo {
            gap: 4px;

            div {
                font-family: "Lora", sans-serif;
                font-size: 1.3rem;
                font-weight: 600;
                color: #515355;
            }

            small {
                text-transform: uppercase;
            }
        }

        .container {
            min-height: 100vh;
            padding-top: 120px;
            gap: 3rem;

            .hero-content {
                flex-basis: 50%;
            }

            .hero-image {
                gap: 2rem;
                flex-basis: 60%;

                .img-dra {
                    width: 100%;
                }

                .logo {
                    display: none;
                }
            }
        }
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            linear-gradient(-66deg,
                #F0F1EB 60%,
                rgba(240, 241, 235, 0.7)),
            linear-gradient(to top, #F0F1EB 0%, transparent 15%)
    }
}

main {
    #transformations {
        position: relative;
        overflow: hidden;
        padding: 180px 1rem;
        min-height: 600px;
        background: url('../../assets/bg-transformations.webp');
        background-repeat: repeat;
        background-size: 420px auto;

        .cards {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 3rem;

            max-width: calc((360px * 2) + 3rem);
            margin: 3rem auto;

            .card {
                background: #FFFF url('../../assets/bg-card-transformation.webp');
                --position: 50%;
                max-width: 360px;
                width: 100%;
                padding: 1rem;
                text-align: center;
                border-radius: var(--border-sm);
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
                border: 1px solid #FFF;

                .container-images {
                    position: relative;
                    max-width: 320px;
                    display: flex;
                    align-items: center;
                    border: 3px solid #FFFFFF;
                    border-radius: var(--border-sm);
                    overflow: hidden;
                    box-shadow: 0 4px 20px rgba(0, 0, 0, .25);

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        user-select: none;
                    }

                    .before-img {
                        position: absolute;
                        z-index: 2;
                        object-position: left center;
                        width: var(--position);
                    }

                    .after-img {
                        object-position: center center;
                    }

                    .dragControl,
                    .bar,
                    .icon-drag {
                        position: absolute;
                        z-index: 3;
                    }

                    .dragControl {
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        width: 100%;
                        cursor: pointer;
                        appearance: none;
                        -webkit-appearance: none;
                        opacity: 0;
                    }

                    .dragControl::-webkit-slider-runnable-track {
                        height: 4px;
                        background: #FFF;
                    }

                    .dragControl::-webkit-slider-thumb {
                        appearance: none;
                        -webkit-appearance: none;

                        width: 32px;
                        height: 32px;
                        border-radius: 50%;
                        background: #FFF;
                        margin-top: -14px;
                    }

                    .dragControl::-moz-range-track {
                        height: 4px;
                        background: #FFF;
                    }

                    .dragControl::-moz-range-thumb {
                        width: 32px;
                        height: 32px;
                        border: none;
                        background: #FFF;
                        border-radius: 50%;
                    }

                    .dragControl:focus {
                        outline: auto;
                    }

                    .dragControl:focus~.icon-drag {
                        outline: 2px solid var(--color-surface-md);
                        outline-offset: 2px;
                    }

                    .dragControl:focus {
                        outline: none;
                    }

                    .dragControl:focus-visible::-webkit-slider-thumb {
                        outline: 3px solid var(--color-surface-md);
                        outline-offset: 3px;
                    }

                    .dragControl:focus-visible::-moz-range-thumb {
                        outline: 3px solid var(--color-surface-md);
                        outline-offset: 3px;
                    }

                    .bar {
                        width: 3px;
                        height: 100%;
                        background: #FFFFFF;
                        display: block;
                        top: 0;
                        left: var(--position);
                        transform: translateX(-50%);
                        pointer-events: none;
                        box-shadow: 2px 3px 4px 0 rgba(0, 0, 0, 0.10);
                    }

                    .icon-drag {
                        position: absolute;
                        top: 50%;
                        left: var(--position);
                        transform: translate(-50%, -50%);
                        width: 28px;
                        height: 28px;
                        border-radius: 999px;
                        background: #FFFFFF;
                        display: grid;
                        place-items: center;
                        pointer-events: none;
                        box-shadow: 2px 3px 4px 0 rgba(0, 0, 0, 0.25);
                    }
                }

                .tag {
                    gap: 6px;

                    svg {
                        flex-shrink: 0;
                        align-self: flex-start;
                    }

                    small {
                        color: var(--color-success);
                        line-height: 1.3;
                    }
                }
            }
        }

        .btn {
            margin: 1rem auto;
        }


    }

    #transformations::before,
    #transformations::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 1920px;
        height: 120px;
        background: url('../../assets/wave-ortodontia.svg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 1920px auto;
        filter: drop-shadow(0 20px 10px rgba(0, 0, 0, 0.05));
        z-index: 3;
    }

    #transformations::before {
        top: -10px;
    }

    #transformations::after {
        bottom: -10px;
        transform: rotate(180deg) translateX(50%);
    }

    #indicated {
        position: relative;

        .container-image {
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;

            img {
                width: 480px;
            }
        }

        .indicated-cards {
            margin: 0 0 3rem;

            .card {
                background: #FFFFFF;
                padding: 10px 1rem;
                border-radius: var(--border-sm);
                border: 1px solid var(--color-surface-md);
                gap: 1rem;
                max-width: 920px;
                width: 100%;

                p {
                    color: #000;
                    width: 90%;
                }

                img {
                    border-radius: var(--border-sm);
                }
            }
        }
    }

    #services {
        .carousel-container {
            position: relative;

            .carousel-controls {
                .arrow-right {
                    transform: rotate(180deg);
                }

                button {
                    background: #FFFFFF;
                    width: 48px;
                    height: 48px;
                    border-radius: var(--border-max);
                    display: grid;
                    place-items: center;
                    cursor: pointer;
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    z-index: 3;
                    border: 1px solid #ccc;
                    box-shadow: var(--shadow-light);
                    transition: background 0.3s ease;
                }

                button:hover {
                    background: #f1efef;
                }

                button:disabled {
                    opacity: 0.3;
                    cursor: not-allowed;
                }

                #btnPrev {
                    left: -25px;
                }

                #btnNext {
                    right: -25px;
                }
            }

            .cardsServices {
                display: flex;
                align-items: stretch;
                gap: 2rem;
                overflow-x: auto;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                scroll-behavior: smooth;
                scrollbar-width: none;

                &::-webkit-scrollbar {
                    display: none;
                }

                .card {
                    flex: 0 0 calc((100% - (2rem * 2)) / 3);
                    background: #FFFFFF;
                    overflow: hidden;
                    border-radius: var(--border-sm);
                    box-shadow: var(--shadow-light);
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    flex-shrink: 0;
                    scroll-snap-stop: always;
                    scroll-snap-align: center;

                    .container-image {
                        position: relative;
                        display: block;
                        width: 100%;
                        pointer-events: none;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }

                    .container-image::before {
                        content: '';
                        position: absolute;
                        inset: 0;
                        background: rgba(250, 250, 250, 0.2);
                        z-index: 3;
                    }

                    .content {
                        padding: 1.4rem 1rem;
                        display: flex;
                        align-items: flex-start;
                        flex-direction: column;
                        gap: var(--gap-md);
                        flex: 1;
                        width: 100%;

                        h3 {
                            font-family: "Inter", sans-serif;
                            font-size: 1.3rem;
                        }

                        a {
                            margin-top: auto;
                            max-width: 100%;
                            width: 100%;
                            gap: var(--gap-sm);
                            padding: 10px;
                        }
                    }
                }
            }

            .warning {
                text-align: center;
                color: rgba(0, 0, 0, 0.45);
                font-size: 0.9rem;
                line-height: 1.2;
                text-wrap: balance;


                display: none;
            }

        }
    }

    #benefits {
        width: 100%;
        min-height: 800px;
        position: relative;
        margin: 12rem 0;

        >* {
            position: relative;
            z-index: 3;
        }

        .title-section {
            h2 {
                color: #FFFFFF;
            }
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2rem;

            .card {
                background: #F0F1EB;
                padding: 2rem 3rem 5rem;
                text-align: center;
                border-radius: var(--border-sm);
                box-shadow: 0px 0px 20px rgba(10, 116, 132, 0.15);
                position: relative;
                overflow: hidden;

                .icon {
                    width: 64px;
                    height: 64px;
                    display: grid;
                    place-items: center;
                    background: var(--color-surface-light);
                    border-radius: var(--border-sm);

                    img {
                        width: 48px;
                    }
                }

                h3 {
                    font-family: "Inter", sans-serif;
                    font-weight: 600;
                }


            }

            .card::before {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(to bottom,
                        transparent 80%, rgba(1, 155, 204, .15));
                pointer-events: none;
            }
        }
    }

    #benefits::before,
    #benefits::after {
        content: '';
        position: absolute;
        background: #0E0E1F url('../../assets/bg-benefits.webp');
        background-repeat: no-repeat;
        background-size: cover;
        top: -140px;
        bottom: -140px;
        left: 0;
        right: 0;
        z-index: 2;

        mask-image:
            url('../../assets/wave-top-benefits.svg'),
            linear-gradient(#000, #000),
            url('../../assets/wave-bottom-benefits.svg');

        mask-repeat: no-repeat;
        mask-position: center top, center, center bottom;
        mask-size: 1920px auto, 100% calc(100% - 280px);
    }

    #benefits::after {
        background: var(--color-surface);
        top: -160px;
        bottom: -160px;
        mask-size: 1920px auto, 100% calc(100% - 320px);
        z-index: 1;
    }

    #about-me {
        position: relative;
        text-align: center;
        min-height: 80vh;
        overflow: hidden;

        >* {
            position: relative;
            z-index: 4;
        }

        .bg-section {
            position: absolute;
            top: 0;
            left: 0;
            overflow: hidden;
            width: 100%;
            height: 100%;
            z-index: 2;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: 88% center;
            }

        }

        .bg-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(240, 241, 235, 0.85);
            z-index: 3;
        }

        .container {
            justify-content: center;
        }

        .professional {
            border-radius: var(--border-max);
            overflow: hidden;
            border: 4px solid #FFFFFF;
            box-shadow: var(--shadow-light);

            img {
                max-width: 200px;
                width: 100%;
            }
        }

        .title-section {
            margin-bottom: 1rem;

            h2 {
                font-family: "Lora", serif;
                font-weight: 600;
            }

            p {
                font-family: "Lora", serif;
                font-style: italic;
                margin-top: 8px;
                font-size: 1.2rem;
            }
        }

        .tags {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            width: 100%;

            .tag {
                background: rgba(255, 255, 255, 0.4);
                padding: 12px;
                border-radius: var(--border-max);
                border: 1px solid #FFF;
                backdrop-filter: blur(6px);
                box-shadow: 0px 4px 4px rgba(0, 0, 0, .15);
                gap: 12px;

                p {
                    color: var(--color-secondary);
                }
            }
        }

        .line {
            width: 100%;
            height: 1px;
            background: rgba(0, 0, 0, 0.10);
            margin: 2rem 0;
        }

        blockquote {
            p {
                font-family: "Lora", serif;
                font-style: italic;
                font-size: 1.2rem;
            }
        }
    }

    #gallery-photos {
        .title-section {
            margin-bottom: 0;
        }

        button {
            cursor: pointer;
            background: none;
            border: none;
            border-radius: var(--border-sm);
            overflow: hidden;
            transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
        }

        button:hover {
            transform: translateY(-8px);
            box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.20);
        }

        .photos-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 3rem 0 0;

            img {
                width: 100%;
                display: block;
                aspect-ratio: 1/1;
                object-fit: cover;
            }
        }
    }

    #testimonials {
        margin-bottom: 5rem;

        .cards-testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;

            .card {
                background: #FFF;
                box-shadow: var(--shadow-light);
                border-radius: var(--border-sm);
                overflow: hidden;
                padding: 1.4rem;


                blockquote {
                    p {
                        margin-bottom: 1rem;
                        line-height: 1.4;
                    }

                    footer {
                        display: flex;
                        align-items: center;
                        gap: var(--gap-sm);


                        cite {
                            font-family: "Inter", sans-serif;
                            font-style: normal;
                            font-size: 0.9rem;
                            font-weight: 500;
                        }
                    }
                }
            }
        }
    }

    #faq {
        position: relative;
        min-height: 100vh;

        >* {
            position: relative;
            z-index: 3;
        }

        .bg-faq {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-position: cover;
            z-index: 2;
        }

        .title-section {
            padding: 0 1rem;

            h2 {
                color: #FFFFFF;
            }

            p {
                color: #FFFFFF;
                /* color: rgb(248, 241, 241); */
            }
        }

        .faq-list {
            background: #FFFFFF;
            padding: 4rem;
            border-radius: var(--border-sm);
            box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
            max-width: 920px;
            margin: 0 auto;

            .faq-item {
                border-bottom: 1px solid #3DE6FF;
                padding: 0 0 1.2rem;

                .faq-trigger {
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 1rem;
                    background: none;
                    border: none;
                    cursor: pointer;
                    padding: 10px 0;
                    margin: 1.2rem 0 0;
                    text-align: left;

                    .faq-title {
                        font-family: "Inter", sans-serif;
                        font-weight: 500;
                        font-size: 1.4rem;
                        line-height: 1.4;
                        color: var(--color-surface-md);
                    }

                    .faq-icon {
                        font-size: 1.6rem;
                        width: 42px;
                        height: 42px;
                        display: grid;
                        place-items: center;
                        background: #E0EAFF;
                        border-radius: var(--border-max);
                        flex-shrink: 0;

                        .expand,
                        .reduce {
                            display: grid;
                            place-items: center;
                        }

                        .expand {
                            color: #8BA0CD;
                        }

                        .reduce {
                            display: none;
                        }
                    }
                }

                .faq-trigger.first {
                    margin: 0;
                }

                .faq-panel {
                    display: grid;
                    grid-template-rows: 0fr;
                    transition: grid-template-rows 0.3s ease-out;

                    .faq-content {
                        overflow: hidden;
                        opacity: 0;
                        transition: opacity 250ms ease;

                        p {
                            line-height: 1.4;
                            width: 90%;
                        }
                    }
                }

                &.active {
                    .faq-icon {
                        background: #B2F5FF;

                        .expand {
                            display: none;
                        }

                        .reduce {
                            display: grid;
                        }
                    }

                    .faq-panel {
                        grid-template-rows: 1fr;

                        .faq-content {
                            opacity: 1;
                        }
                    }
                }

            }

            .faq-item:last-child {
                border-bottom: none;
                padding: 0;
            }
        }
    }

    #faq::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,
                rgba(6, 128, 147) 0%,
                rgba(6, 128, 147, .95) 50%,
                rgba(6, 128, 147) 100%);
        z-index: 3;
    }

    #cta-end {
        padding: 3rem 0 0;

        .container-image {
            max-width: 1200px;
            margin: 0 auto;

            img {
                width: 100%;
            }
        }

        .title-section {
            margin-top: -20px;

            a {
                margin: 1rem auto;
            }
        }
    }
}

footer {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    margin: 2rem 0;
    text-align: center;
    font-size: 0.8rem;
    padding: 2rem 1rem 0;

    .copy {
        margin-top: 6px;
    }
}

/* Animmation */
.fade-up {
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-from-left,
.fade-from-right {
    opacity: 0;

    transition:
        opacity 0.5s ease,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-from-left {
    transform: translateX(-28px);
}

.fade-from-right {
    transform: translateX(28px);
}

.fade-from-left.is-visible,
.fade-from-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */

@media (max-width: 360px) {
    main {
        #faq {
            .faq-list {
                .faq-item {
                    .faq-trigger {
                        .faq-title {
                            font-size: 1.1rem !important;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 512px) {
    main {
        #indicated {

            h2 {
                text-align: end;
            }

            .content {
                .container-image {
                    top: 0;
                    left: -100px;

                    img {
                        width: 320px;
                    }
                }

                .indicated-cards {

                    .card {
                        padding: 12px;

                        p {
                            font-size: 0.9rem;
                        }

                        img {
                            width: 70px;
                        }
                    }
                }
            }

        }
    }
}

@media (max-width: 580px) {
    main {
        #services {
            .container {
                .carousel-container {
                    display: flex;
                    flex-direction: column-reverse;
                    gap: 1rem;

                    .carousel-controls {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        gap: 1rem;
                        margin-top: 1.8rem;

                        button {
                            position: relative;
                        }

                        #btnPrev {
                            left: 0;
                        }

                        #btnNext {
                            right: 0;
                        }
                    }

                    .cardsServices {
                        gap: 1rem;

                        .card {
                            flex: 0 0 100% !important;
                        }
                    }

                    .warning {
                        display: block;
                    }
                }

            }

        }

        #faq {
            padding: 3rem 0;

            .faq-list {
                padding: 2rem;
                max-width: 100%;
                width: 100%;
                margin: 0 0;
                border-radius: 30px;

                .faq-item {

                    .faq-trigger {

                        .faq-title {
                            font-size: 1.2rem;
                        }
                    }

                }
            }
        }
    }
}

@media (max-width: 732px) {
    main {
        #benefits {
            .container {
                .cards {
                    grid-template-columns: 1fr;

                    .card {
                        padding: 1rem 1rem 3rem;


                        .desc {
                            text-wrap: balance;
                        }


                    }

                    .card::before {
                        content: "";
                        position: absolute;
                        inset: 0;
                        background: linear-gradient(to bottom,
                                transparent 80%, rgba(1, 155, 204, .15));
                        pointer-events: none;
                    }
                }
            }
        }
    }
}

@media (max-width: 900px) {
    h1 {
        text-wrap: balance;
    }

    header {
        #navbar {
            padding: 1rem;

            .menu-mobile {
                display: flex;
            }

            .navigation {
                display: none;
            }

        }

        .hero {
            .container {
                flex-direction: column-reverse;
                align-items: center;
                justify-content: center;
                padding-top: 80px;

                .hero-content {
                    text-align: center;
                    margin-top: -50px;

                    a {
                        margin: 0 auto;
                    }

                    .logo {
                        display: none;
                    }
                }

                .hero-image {
                    .logo {
                        display: flex;
                    }

                    .img-dra {
                        transform: translateX(32px);
                    }
                }
            }
        }

        .hero::before {
            background: linear-gradient(to bottom,
                    rgba(240, 241, 235, 0.9) 20%, #F0F1EB 30%);
        }
    }

    main {
        #services {
            .container {
                .cardsServices {
                    gap: 1.5rem;

                    .card {
                        flex: 0 0 calc((100% - 1.5rem) / 2);
                    }
                }
            }

        }
    }
}

@media (max-width: 1360px) {
    main {
        #indicated {

            .container-image {
                opacity: 0.3;
                top: -30px;
                left: -120px;
            }
        }
    }
}

.container{
    max-width: var(--container-width);
    padding: 0 var(--container-padding);
    margin: 0 auto;
}

.flex-start{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: var(--gap-md);
}

.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-md);
}

.flex-between{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-md);
}

.flex-column{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: var(--gap-md);
}
