@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #A47B67;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: sans-serif;
    color: #fff;
}

#smooth-scroll-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    will-change: transform;
}


body {
    color: #FAFAFA;
    background-color: rgb(0, 21, 26);
    font-family: "Montserrat", sans-serif;
}

.content {
    min-width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}


.video-home {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: #000;
    overflow: hidden;
}

.video-home iframe {
    width: auto;
    height: 100%;
    aspect-ratio: 9/16;
    border: none;
}


/* ---------------------------------------- HERO ---------------------------------------- */

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    text-align: start;

}

.hero-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 21, 26) 100%),
        url('/assets/img/bg-hero.webp') no-repeat center center/cover;
    z-index: -2;
}

.hero-text {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 30px;
    padding-left: 140px;
}

.hero-text span,
.hero-text svg {
    color: var(--primary);
    letter-spacing: 8px;
}

.hero-text h1 {
    font-size: 4.6rem;
    font-weight: 400;
}


@media (max-width: 768px) {
    .hero-text {
        padding-left: 24px;
        align-items: start;

    }

    .hero-text h1 {
        font-size: 3rem;
        font-weight: 400;
    }

}

/* ---------------------------------------- ABOUT ---------------------------------------- */

.about {
    padding-block: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1080px;
}


.about-content div {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: start;
}

.about-text {
    display: flex;
    justify-content: center;
    align-items: start !important;
}

.about-text h2 {
    font-size: 70px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}


.about-text span {
    font-style: italic;
}


.about-img {
    display: block;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    width: 100%;
    max-width: 400px;
    /* filter: drop-shadow(0 0 18px #ffffff1f); */
    z-index: 3;
}

.about-img-wrapper {
    position: relative;
    display: inline-block;
}

.about-img-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, #ffe8b6b9 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    z-index: 1;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column-reverse;
        padding: 0 24px;
    }

    .about-text h2 {
        font-size: 2.8rem;
        font-weight: 500;
        color: var(--primary);
        margin-bottom: 30px;
        text-align: center;

    }
}

/* ---------------------------------------- INSTA ---------------------------------------- */

.insta {
    padding-block: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 90px;
}

.insta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1080px;
}


.insta-content div {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: start;
}

.insta-text {
    display: flex;
    justify-content: center;
    align-items: start !important;
}

.insta-text h2 {
    font-size: 65px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.insta-text p {
    letter-spacing: 1.2px;
}



.insta-img {
    width: 100%;
    max-width: 400px;
    z-index: 3;
}

.insta-img-wrapper {
    position: relative;
    display: inline-block;
}

.insta-img-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, #ff3131b9 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -30%);
    filter: blur(60px);
    z-index: 1;
}

.insta-img-text {
    margin-top: -200px;
    margin-left: 350px;
    z-index: 4;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.insta-img-text p {
    font-size: 45px;
    font-weight: bold;
    color: var(--primary);
}

.insta-img-text span {
    font-size: 18px;
    font-weight: 500;

}

@media (max-width: 768px) {
    .insta-content {
        flex-direction: column;
        padding: 0 24px;
        gap: 50px;
    }

    .insta-img-text {
        margin-top: 0px;
        margin-left: 100px;
    }

    .insta-text h2 {
        font-size: 2.8rem;
    }
}

/* ---------------------------------------- PALESTRAS ---------------------------------------- */

.palestras {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 24px;

}

.palestras h2 {
    color: var(--primary);
    font-weight: 500;
    font-size: 65px;
    text-align: center;
}

.palestras-content {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1080px;
}

.palestras-card {
    width: 220px;
    height: 350px;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 70%),
        url("/assets/img/palestras-card/card-1.webp") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    border-radius: 5px;
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--primary);
}

.palestras-card:nth-child(2) {
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 70%),
        url("/assets/img/palestras-card/card-2.webp") center/cover no-repeat;
}

.palestras-card:nth-child(3) {
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 70%),
        url("/assets/img/palestras-card/card-3.webp") center/cover no-repeat;
}

.palestras-card:nth-child(4) {
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 70%),
        url("/assets/img/palestras-card/card-4.webp") center/cover no-repeat;
}


.palestras-card h3 {
    text-align: center;
    font-size: 14px;
    margin-bottom: 4px;
}

.palestras-card p {
    text-align: center;
    font-size: 12px;
    margin-bottom: 14px;

}

.palestras-card a {
    text-align: center;
    background-color: var(--primary);
    border-radius: 5px;
    text-decoration: none;
    padding: 6px 2px;
    color: #FFF;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .palestras {
        padding: 0 24px;
    }

    .palestras-content {
        gap: 40px;
        justify-content: center;
    }

    .palestras h2 {
        font-size: 2.8rem;
    }
}

/* ---------------------------------------- VISITE NOSSA LOJA ---------------------------------------- */
.visit-store {
    margin-top: 100px;
    padding: 0 24px;
}

.visit-store-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1080px;
    margin: 0 auto;
}

.visit-text {
    flex: 1 1 400px;
}

.visit-text h2 {
    color: var(--primary);
    font-weight: 500;
    font-size: 60px;
    text-align: start;
}

.visit-text p {
    font-size: 18px;
    margin-bottom: 35px;
    color: white;
    line-height: 1.4;
}

.btn-visit {
    margin-top: 20px;
    padding: 15px 30px;
    width: 100%;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-visit:hover:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.visit-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.visit-image img {
    width: 100%;
}


/* ---------------------------------------- EBOOKS ---------------------------------------- */

.ebook {
    margin-top: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ebook h2 {
    color: var(--primary);
    font-weight: 500;
    font-size: 65px;
    text-align: center;
}

.ebook-content {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1080px;
}

.ebook-card {
    width: 220px;
    height: 350px;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 70%),
        url("/assets/img/eb-despertando-potencial.webp") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    border-radius: 5px;
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--primary);
}

.ebook-card:nth-child(2) {
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 70%),
        url("/assets/img/eb-setor-bancario.webp") center/cover no-repeat;
}

.ebook-card h3 {
    text-align: center;
    font-size: 14px;
    margin-bottom: 4px;
}

.ebook-card p {
    text-align: center;
    font-size: 12px;
    margin-bottom: 14px;

}

.ebook-card a {
    text-align: center;
    background-color: var(--primary);
    border-radius: 5px;
    text-decoration: none;
    padding: 6px 2px;
    color: #FFF;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .ebook {
        padding: 0 24px;
    }

    .ebook-content {
        gap: 40px;
        justify-content: center;
    }

    .ebook h2 {
        font-size: 2.8rem;
    }
}

/* ---------------------------------------- VÍDEOS ---------------------------------------- */
.videos {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.videos h2 {
    color: var(--primary);
    font-weight: 500;
    font-size: 65px;
    text-align: center;
}

.videos-content {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    max-width: 1080px;
    justify-content: center;
}

/* Card de vídeo */
.video-card {
    width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

/* Responsividade do vídeo */
.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--primary);
    background: #000;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.youtube-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--primary);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-thumb .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #fff;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.youtube-thumb .play-btn:hover {
    opacity: 0.85;
}

/* Garantir que o iframe preench a thumb */
.youtube-thumb iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.video-card {
    width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}


@media (max-width: 768px) {
    .videos {
        padding: 0 16px;
    }

    .videos h2 {
        font-size: 2.5rem;
    }

    .video-card {
        width: 100%;
        max-width: 100%;
        gap: 16px;
    }

    .youtube-thumb {
        aspect-ratio: 16 / 9;
    }

    .youtube-thumb .play-btn {
        width: 48px;
        height: 48px;
        font-size: 2rem;
    }
}



/* ---------------------------------------- DEPOIMENTOS ---------------------------------------- */
.testimonials-section {
    margin-top: 100px;
    display: flex;
    justify-content: center;

}

.testimonials-section-content {
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    position: relative;
}

.section-title {
    color: var(--primary);
    font-weight: 500;
    font-size: 65px;
    text-align: center;
}

.testimonial-card {
    margin-top: 40px;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background-color: #a47b6721;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    padding: 0 80px;
}

.testimonial-author {
    font-weight: 600;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
    top: 60% !important;

}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 0 24px;
    }

    .testimonial-text {
        font-style: italic;
        margin-bottom: 15px;
        padding: 0 40px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        color: var(--primary) !important;
        top: 60% !important;

    }

    .section-title {
        font-size: 2.8rem;
    }
}


/* ---------------------------------------- AGENDAR PALETRA ---------------------------------------- */
.ag-palestras {
    margin-top: 150px;
    position: relative;
    width: 100%;
    min-height: 400px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.ag-palestras::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(95, 60, 43, 0.9), rgba(95, 60, 43, 0.9)),
        url('https://images.unsplash.com/photo-1587825140708-dfaf72ae4b04?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    z-index: -3;
}

.ag-palestras h2 {
    font-weight: 500;
    font-size: 52px;
    margin-bottom: 10px;
    text-align: center;
}

.agendar {
    position: relative;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: white;
    background-color: rgb(1, 36, 44);
    padding: 15px 40px;
    border-radius: 10px;
    letter-spacing: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease, letter-spacing 0.3s ease;
    text-align: center;
    overflow: hidden;
}

.agendar .chevron {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.agendar:hover {
    background-color: rgb(0, 56, 70);
    letter-spacing: 6px;
}

.agendar:hover .chevron {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}


@media (max-width: 768px) {
    .ag-palestras {
        padding: 0 24px;
    }

    .ag-palestras h2 {
        font-size: 2.8rem;
    }

}


/* ---------------------------------------- CONTATO ---------------------------------------- */


.contato {
    padding: 100px 0px;
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 120px;
    background-color: #022026;
}

.contato h2 {
    font-weight: 600;
    font-size: 60px;
    margin-bottom: 10px;
    text-align: start;
    color: var(--primary);
}

.contato h3 {
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 10px;
    text-align: start;
    margin-bottom: 30px;
}


.contato-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.contato-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-size: 24px;

}

.contato-links svg {
    color: var(--primary);
}

.contato-redes {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contato-redes a {
    color: black;
    background-color: white;
    padding: 10px;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}



@media (max-width: 768px) {
    .contato {
        padding: 100px 24px;
    }

    .contato h2 {
        font-size: 2.8rem;
    }

    .contato h3 {
        font-size: 1.4rem;
    }

    .contato-links a {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: white;
        font-size: 16px;

    }

}

/* ---------------------------------------- QRCODES ---------------------------------------- */
.qr-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;

}

.qr-title {
    font: 600 1.125rem/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    margin: 0 0 12px;
}

.qr-grid {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
}

.qr {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
}

.qr-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: auto;
}

@media (max-width: 380px) {
    .qr-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 10px;
    }
}

@media (min-width: 1200px) {
    .qr-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}


/* ---------------------------------------- FOOTER ---------------------------------------- */

footer {
    padding: 100px 0px;
    padding-left: 100px;
    background-color: #002D30;
}

@media (max-width: 768px) {
    footer {
        padding: 100px 24px;
    }
}

/* ---------------------------------------- FORMULARIO DE CONTATO ---------------------------------------- */

.form-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 90%;
    height: 100%;
    background-color: rgb(0, 21, 26);
    /* Mantido */
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transition: right 0.4s ease;
    overflow-y: auto;
    padding: 30px 25px;
    color: #fff;
}

.form-sidebar.active {
    right: 0;
}

.form-sidebar .close-btn {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    float: right;
    color: #fff;
    transition: color 0.2s ease;
}

.form-sidebar .close-btn:hover {
    color: var(--primary);
}

.form-sidebar h2 {
    margin-top: 0;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
    color: var(--primary);
}

.form-sidebar h3 {
    margin-top: 40px;
}

.form-sidebar label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ddd;
}

.form-sidebar input,
.form-sidebar select,
.form-sidebar textarea {
    width: 100%;
    padding: 10px 12px;
    margin-top: 5px;
    border: 1px solid #444;
    border-radius: 6px;
    background-color: #0a1b22;
    color: #fff;
    font-size: 0.95rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-sidebar input:focus,
.form-sidebar select:focus,
.form-sidebar textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 8px var(--primary);
    outline: none;
}

.form-sidebar textarea {
    min-height: 80px;
    resize: vertical;
}

.form-sidebar button[type="submit"] {
    margin-top: 20px;
    padding: 12px;
    width: 100%;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease, transform 0.2s ease;
}

.form-sidebar button[type="submit"]:hover {
    opacity: 0.85;
    /* Tom mais escuro da primary */
    transform: translateY(-2px);
}

.form-sidebar::-webkit-scrollbar {
    width: 8px;
}

.form-sidebar::-webkit-scrollbar-track {
    background: #0a1b22;
}

.form-sidebar::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
    border: 2px solid #0a1b22;
}

.form-sidebar .section {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.form-sidebar input::placeholder,
.form-sidebar textarea::placeholder {
    color: #888;
    opacity: 1;
}