@charset "UTF-8";

/*******************************************************
       * ROOT THEME VARIABLES (from inspiracao.html)
       *******************************************************/
:root {
    --el-color-white: #fff;
    --el-color-black: #000;

    /* Azul principal */
    --brand-color: rgb(16, 81, 185);
    --green-color: #18ffb0;
    --brand-color-hover: rgba(16, 81, 185, 0.8);
    /* Texto e fontes (do inspiracao.html) */
    --el-font-family: "Helvetica Neue", Helvetica, "PingFang SC",
        "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;

    --el-text-color-primary: #fff;
    /* texto principal */
    --el-text-color-secondary: grey;
    /* texto secundário */

    /* Tamanhos e pesos inspirados no snippet */
    --el-font-size-base: 16px;
    /* corpo */
    --el-font-size-large: 26px;
    /* títulos médios */
    --el-font-size-medium-large: 40px;
    /* títulos maiores */
    --el-font-size-extra-large: 48px;
    /* títulos maiores */
    --el-font-weight-primary: 500;

    /* Sombra e transições */
    --el-transition-duration: 0.3s;
    --el-border-radius-base: 12px;
}

/*******************************************************
       * RESET & BASE STYLES
       *******************************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: var(--el-color-black);
    color: var(--el-text-color-primary);
    font-family: var(--el-font-family);
    font-size: var(--el-font-size-base);
    scroll-behavior: smooth;
    line-height: 1.8;
    overflow-x: hidden;
    max-width: 100%;

}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--el-text-color-primary);
    text-decoration: none;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}

/*******************************************************
* MAIN LAYOUT
*******************************************************/
main {
    margin-top: 80px;
    /* Deixa espaço para nav fixo */
}

section {
    /* padding: 3rem 2rem; */
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

/*******************************************************
* HERO SECTION + STARS
*******************************************************/
.hero {
    position: relative;
    text-align: center;
    overflow: hidden;
}

/* Canvas de estrelas #stars */
#stars {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.05;
    background: radial-gradient(circle at 50% 0%,
            #fff,
            transparent 70%);
}

.hero h1 {
    position: relative;
    font-size: var(--el-font-size-extra-large);
    margin-bottom: 1rem;
    color: var(--el-color-white);
    z-index: 1;
}

.hero p {
    position: relative;
    z-index: 1;
    margin: 1rem auto 2rem;
    max-width: 700px;
    font-size: var(--el-font-size-base);
    color: var(--el-text-color-secondary);
}

.video-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 1rem;

}

.video-mask {
    overflow: hidden;
    border-radius: 1rem;
    width: 100%;
    max-width: 720px;
}

.video-mask video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: inherit;
}

.cta-button {
    position: relative;
    z-index: 1;
    background: var(--brand-color);
    color: var(--el-color-white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background var(--el-transition-duration) ease;
}

.cta-button:hover {
    transform: scale(1.3);
    background: var(--brand-color-hover);
}

/*******************************************************
       * DESCRIPTION CLASSES
       *******************************************************/
.description-container {
    position: relative;
    /* for pseudo-element stacking */
    overflow: visible;
    z-index: 2;
}

/* Orbiting glow pseudo-element */
.description-container.orbit-glow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: var(--brand-color);
    border-radius: 50%;
    filter: blur(120px) brightness(70%) grayscale(20%);
    animation: orbitMove 12s linear infinite;
    opacity: 0.9;
    z-index: -1;
    /* behind text, above canvas */
    transform: translate(-50%, -50%);
}

/* Keyframes for orbit-style movement */
@keyframes orbitMove {
    0% {
        transform: translate(-50%, -50%) translateX(0px) translateY(0px);
    }

    25% {
        transform: translate(-50%, -50%) translateX(480px) translateY(-320px);
    }

    50% {
        transform: translate(-50%, -50%) translateX(0px) translateY(-480px);
    }

    75% {
        transform: translate(-50%, -50%) translateX(-480px) translateY(-320px);
    }

    100% {
        transform: translate(-50%, -50%) translateX(0px) translateY(0px);
    }
}

.text-container {
    position: relative;
    overflow: hidden;
}

/*
        Pseudo-element blur effect from snippet:
        [data-theme=dark] .description-container[data-v-3ffe115a]:before,
        ...
        Replicando essa ideia aqui:
      */
[data-theme=dark] .description-container::before,
[data-theme=dark] .text-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--brand-color);
    filter: blur(130px) brightness(70%) grayscale(20%);
    z-index: 0;
    /* behind content */
}

.description-container-title {
    position: relative;
    text-align: center;
    font-size: var(--el-font-size-extra-large);
    color: var(--el-color-white);
    font-weight: var(--el-font-weight-primary);
    margin-bottom: 1rem;
    z-index: 1;
    /* above pseudo-element */
}

.description-container-subtitle {
    position: relative;
    text-align: center;
    font-size: var(--el-font-size-medium-large);
    color: var(--el-color-white);
    font-weight: var(--el-font-weight-primary);
    margin-bottom: 2rem;
    margin-top: 1rem;
    z-index: 1;
    /* above pseudo-element */
}

.description-container-info {
    position: relative;
    text-align: center;
    z-index: 1;
    font-size: var(--el-font-size-base);
    color: var(--el-text-color-secondary);
    margin-bottom: 1.5rem;
    color: grey;
}

/*******************************************************
       * SERVICES SECTION
       *******************************************************/
.video-list-container {
    position: relative;
    /* if we want pseudo-element here too */
    overflow: hidden;
}

.video-mask-services {
    overflow: hidden;
    border-radius: 1rem;
    width: 100%;
    max-width: 480px;
}

.service-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-block img {
    width: 300px;
    border-radius: var(--el-border-radius-base);
}

.service-block-content h3 {
    font-size: var(--el-font-size-large);
    color: var(--el-color-white);
    margin-bottom: 0.5rem;
}

.service-block-content p {
    color: var(--el-text-color-secondary);
    font-size: var(--el-font-size-base);
}

.text-box-title {
    font-size: var(--el-font-size-large);
    font-weight: var(--el-font-weight-primary);
    color: var(--el-color-white);
}

.text-box {
    position: relative;
    z-index: 1;
}

.video-box img {
    width: 100%;
    border-radius: var(--el-border-radius-base);
}

.stream-btn {
    background: var(--brand-color);
    color: var(--el-color-white);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: bold;
    border: none;
    margin-top: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.stream-btn:hover {
    background: rgba(16, 81, 185, 0.8);
}


/* === GRID SYSTEM === */
.el-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

.el-col {
    padding-left: 8px;
    padding-right: 8px;
    box-sizing: border-box;
}

[class*="el-col-"] {
    flex: 0 0 auto;
}

.el-col-1 {
    width: 4.16666667%;
}

.el-col-2 {
    width: 8.33333333%;
}

.el-col-3 {
    width: 12.5%;
}

.el-col-4 {
    width: 16.66666667%;
}

.el-col-5 {
    width: 20.83333333%;
}

.el-col-6 {
    width: 25%;
}

.el-col-7 {
    width: 29.16666667%;
}

.el-col-8 {
    width: 33.33333333%;
}

.el-col-9 {
    width: 37.5%;
}

.el-col-10 {
    width: 41.66666667%;
}

.el-col-11 {
    width: 45.83333333%;
}

.el-col-12 {
    width: 50%;
}

.el-col-13 {
    width: 54.16666667%;
}

.el-col-14 {
    width: 58.33333333%;
}

.el-col-15 {
    width: 62.5%;
}

.el-col-16 {
    width: 66.66666667%;
}

.el-col-17 {
    width: 70.83333333%;
}

.el-col-18 {
    width: 75%;
}

.el-col-19 {
    width: 79.16666667%;
}

.el-col-20 {
    width: 83.33333333%;
}

.el-col-21 {
    width: 87.5%;
}

.el-col-22 {
    width: 91.66666667%;
}

.el-col-23 {
    width: 95.83333333%;
}

.el-col-24 {
    width: 100%;
}

/* === UTILITY CLASSES === */
.items-center {
    align-items: center;
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-md-10 {
    margin-bottom: 2.5rem;
}

.pt-md-10 {
    padding-top: 2.5rem;
}

.is-justify-space-between {
    justify-content: space-between;
}

.pr-md-6 {
    padding-right: 0rem;
}

/* Responsive tweaks (optional, mobile-first example) */
@media (max-width: 768px) {
    .el-col {
        width: 100% !important;
    }

    .pr-md-6,
    .pt-md-10,
    .mb-md-10 {
        padding-right: 0 !important;
        padding-top: 1rem;
        margin-bottom: 1.5rem;
    }
}

/*******************************************************
       * BOX-SHADOW STYLES (video-shadow2)
       *******************************************************/
.video-shadow2 {
    border: 2px solid var(--brand-color);
    border-radius: var(--el-border-radius-base);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 10px rgba(16, 81, 185, 0.3);
    transition: box-shadow 0.3s ease;
}

.video-shadow2:hover {
    box-shadow: 0 0 40px rgba(16, 81, 185, 0.726);
}

.video-shadow3 {
    border: 2px solid #00FF99;
    border-radius: var(--el-border-radius-base);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 10px rgba(16, 255, 153, 0.3);
    transition: box-shadow 0.3s ease;
}

.video-shadow3:hover {
    box-shadow: 0 0 40px rgba(16, 255, 153, 0.726);
}

/*******************************************************
       * MARKET COMMENTARY
       *******************************************************/
@keyframes pulse-scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-button {
    animation: pulse-scale 3s ease-in-out infinite;
}

/*******************************************************
       * FUTURE SERVICES (flip-cards)
       *******************************************************/
.user-container {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}


[data-theme=dark] .user-container::before,
[data-theme=dark] .user-container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--brand-color);
    filter: blur(130px) brightness(70%) grayscale(20%);
    z-index: 0;
}

/* slightly offset the second circle for a layered effect */
[data-theme=dark] .user-container::after {
    width: 250px;
    height: 250px;
    opacity: 0.7;
}

.flip-card {
    flex: 1 1 300px;
    background: #272626;
    border: 2px solid var(--brand-color);
    border-radius: var(--el-border-radius-base);
    padding: 2rem;
    position: relative;
    /* above pseudo-elements */
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.flip-card h2 {
    color: var(--el-color-white);
    margin-bottom: 1rem;
}

.flip-card p {
    color: var(--el-text-color-secondary);
}

.ajudar-btn {
    margin-top: 10px;
    /* Pushes the button to the bottom */
    align-self: center;
    /* Optional: align to left or center as needed */
}


.increase-btn:hover {
    transform: scale(1.2);
}

/*******************************************************
       * FORMS
       *******************************************************/
form {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

input,
textarea {
    padding: 0.75rem;
    border: 3px solid #333;
    background: #000;
    color: #fff;
    border-radius: 5px;
}

input:focus,
textarea:focus {
    outline: 2px solid var(--brand-color);
}

/*******************************************************
       * ICONS FOR CONTACT (SVG)
       *******************************************************/
.contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--el-font-size-base);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: var(--el-text-color-secondary);
}

.contact-info span {
    color: var(--el-text-color-secondary);
}

.contact-gradient {
    position: relative;
    overflow: hidden;
    /* contain the pseudo-element swirl */
}

.contact-gradient::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: conic-gradient(from 180deg,
            rgba(59, 130, 246, 0.5),
            rgba(92, 246, 105, 0.6),
            rgba(72, 230, 236, 0.6),
            rgba(59, 130, 246, 0.5));
    animation: swirl 10s linear infinite;
    opacity: 0.40;
    pointer-events: none;
    z-index: -1;
    filter: blur(160px);
}

@keyframes swirl {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.main-button {
    grid-column-gap: 1.375rem;
    grid-row-gap: 1.375rem;
    color: #c6ffec;
    background-image: linear-gradient(98deg, #02b09b61, #5a89fd2e);
    border: 1px solid #ffffff1f;
    border-radius: 3.75rem;
    justify-content: flex-start;
    align-items: center;
    padding: .5rem .5rem .5rem 2rem;
    font-size: 1.25rem;
    transition: all .5s;
    display: flex;
    max-width: 400px;
    max-height: 70px;
}

.main-button:hover {
    background-image: linear-gradient(98deg, #02b09b61, #02b09b33);
    transform: translateY(-1px);
    box-shadow: 0 20px 40px #2db58633
}


.main-button_text {
    margin-right: 1.375rem;
}

.main-button_circle {
    background-color: #18ffb0;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    display: flex
}

.main-button_arrow {
    filter: invert();
    width: 1.75rem
}

.main-button_circle img {
    width: 1.5rem;
    height: 1.5rem;
}
.button-group {
    padding: 0.5rem;
}
/* Calendly */
.main_calendly-button {
    grid-column-gap: 1.375rem;
    grid-row-gap: 1.375rem;
    color: #c6ffec;
    background-image: linear-gradient(98deg, #016be461, #4d6ec02e);
    border: 1px solid #ffffff1f;
    border-radius: 3.75rem;
    justify-content: flex-start;
    align-items: center;
    padding: .5rem .5rem .5rem 2rem;
    font-size: 1.25rem;
    transition: all .5s;
    display: flex;
    max-width: 400px;
    max-height: 70px;
}

.main_calendly-button:hover {
    background-image: linear-gradient(98deg, #016be461, #02b09b33);
    transform: translateY(-1px);
    box-shadow: 0 20px 40px #2db58633
}


.main_calendly-button_text {
    margin-right: 1.375rem;
}

.main_calendly-button_circle {
    background-color: #ffffff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    display: flex
}


.main_calendly-button_circle img {
    width: 1.5rem;
    height: 1.5rem;
}


/*******************************************************
* ABOUT US
*******************************************************/
.cofounder-box {
    text-align: center;
    padding: 1rem;
}

.cofounder-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.linkedin-icon img {
    width: 24px;
    height: 24px;
}

.cofounder-description {
    max-height: 3rem;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.cofounder-description.minimized .more-text {
    display: none;
}

.cofounder-description.expanded {
    max-height: 60rem;
}

.toggle-description-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 3rem;
    margin-top: 0.5rem;
}

.linkedin-icon {
    display: inline-block;
    margin-bottom: 15px;
    transition: transform 0.2s ease;
}

.linkedin-icon svg {
    fill: #ffffff;
    width: 24px;
    height: 24px;
}

.linkedin-icon:hover {
    transform: scale(1.2);
}


/* Orbiting glow pseudo-element */
.orbit-glow2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: var(--brand-color);
    border-radius: 50%;
    filter: blur(120px) brightness(70%) grayscale(20%);
    animation: orbitMove2 12s linear infinite;
    opacity: 0.9;
    z-index: -1;
    /* behind text, above canvas */
    transform: translate(-50%, -50%);
}

/* Keyframes for orbit-style movement */
@keyframes orbitMove2 {
    0% {
        transform: translate(-50%, -50%) translateX(0px) translateY(0px);
    }

    25% {
        transform: translate(-50%, -50%) translateX(480px) translateY(+320px);
    }

    50% {
        transform: translate(-50%, -50%) translateX(0px) translateY(+480px);
    }

    75% {
        transform: translate(-50%, -50%) translateX(-480px) translateY(+320px);
    }

    100% {
        transform: translate(-50%, -50%) translateX(0px) translateY(0px);
    }
}

/*******************************************************
* FADE-IN ANIMATION
*******************************************************/
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}