﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: pan-y;
    background-color: #000000;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 1.6;
}

/* Skip to main content link (accessibility) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    z-index: 10000;
    border: 2px solid #fff;
    font-weight: 500;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

/* Mobile compatibility improvements */
img {
    max-width: 100%;
    height: auto;
}

button, a, .nav-link, .hero-cta-btn, .section04-cta-btn {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    touch-action: manipulation;
}

/* Ensure minimum touch target size (44x44px) */
@media (max-width: 768px) {
    button, a.button, .nav-link, .hero-cta-btn, .section04-cta-btn, .hero-scroll-circle {
        min-height: 44px;
        min-width: 44px;
    }
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
}

/* Center line - only in hero */
.center-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #FFFFFF;
    z-index: 10;
}

@media (max-width: 768px) {
    .center-line {
        top: 66.67%;
    }

    /* Adjust hero content container to align with the line at 2/3 */
    .hero-content {
        align-items: center;
    }

        .hero-content > .container {
            position: relative;
            top: calc(66.67vh - 50vh);
        }

    /* Keep texts aligned with the line */
    #hero-text-left {
        transform: translateY(-10px) !important;
    }

    #hero-text-right {
        transform: translateY(10px) !important;
    }
}

/* Hero text animation */
.hero-text {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

    .hero-text.active {
        opacity: 1;
    }

/* Hero video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Slow down video playback */
video {
    filter: brightness(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* Hero Title and Subtitle */
.hero-title-section {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    z-index: 4;
    text-align: center;
    padding: 0 6rem;
}

    .hero-title-section .hero-main-title {
        font-size: 42px;
        font-weight: 200;
        letter-spacing: -0.5px;
        color: #FFFFFF;
        margin-bottom: 16px;
        line-height: 1.3;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 1s ease-out 0.3s, transform 1s ease-out 0.3s;
    }

        .hero-title-section .hero-main-title.visible {
            opacity: 1;
            transform: translateY(0);
        }

    .hero-title-section .hero-main-subtitle {
        font-size: 17px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.7;
        max-width: 800px;
        margin: 0 auto;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 1s ease-out 0.6s, transform 1s ease-out 0.6s;
    }

        .hero-title-section .hero-main-subtitle.visible {
            opacity: 1;
            transform: translateY(0);
        }

/* Hero CTA Button below subtitle */
.hero-subtitle-cta-wrapper {
    margin-top: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out 0.9s, transform 1s ease-out 0.9s;
}

    .hero-subtitle-cta-wrapper.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .hero-subtitle-cta-wrapper .hero-cta-btn {
        margin: 0 auto;
    }

@media (max-width: 1024px) {
    .hero-title-section {
        padding: 0 4rem;
    }

        .hero-title-section .hero-main-title {
            font-size: 36px;
        }

        .hero-title-section .hero-main-subtitle {
            font-size: 16px;
        }
}

@media (max-width: 768px) {
    .hero-title-section {
        padding: 0 2rem;
        top: 20%;
    }

        .hero-title-section .hero-main-title {
            font-size: 28px;
            margin-bottom: 12px;
        }

        .hero-title-section .hero-main-subtitle {
            font-size: 15px;
            line-height: 1.6;
        }

    .hero-subtitle-cta-wrapper {
        margin-top: 24px;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

    header.scrolled {
        background-color: rgba(0, 0, 0, 0.95);
    }

/* Logo tagline */
.logo-tagline {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255);
    margin-top: 2px;
    display: block;
}

/* Menu */
.nav-link {
    font-size: 12px;
    letter-spacing: 0.5px;
    position: relative;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background-color: #FFFFFF;
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-link:hover {
        opacity: 1;
    }

        .nav-link:hover::after {
            width: 100%;
        }

/* Exclude logo and language selector from underline animation */
.logo a,
.lang-selector button,
.lang-option-mobile {
    position: relative;
}

    .logo a::after,
    .lang-selector button::after,
    .lang-option-mobile::after {
        display: none;
    }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    transition: right 0.3s ease;
    z-index: 60;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-menu-link {
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.3px;
    padding: 10px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.2s ease;
    opacity: 0.85;
}

    .mobile-menu-link:hover {
        opacity: 1;
        transform: translateY(-1px);
    }

/* Language selector */
.lang-selector {
    position: relative;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 8px;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 10px 16px;
    font-size: 11px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .lang-option:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .lang-option.active {
        background: rgba(255, 255, 255, 0.1);
    }

.lang-option-mobile {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.3px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 2px;
}

    .lang-option-mobile:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    .lang-option-mobile.active {
        background: rgba(255, 255, 255, 0.1);
        border-color: #FFFFFF;
    }

/* Section animations */
.section-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .section-fade.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Thin borders */
.border-thin {
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.15);
}

/* Section styles - from estrutura2 */
section {
    padding: 0px 0 !important;
}

/* Container max-width utility */
.container-max {
    max-width: 1400px;
}

/* Border color for sections */
.border-b {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

/* Partners image wrapper max-width */
.partners-image-wrapper.max-500 {
    max-width: 500px;
}

/* Founder image backgrounds */
.founder-image-wrapper.thomaz {
    background-image: url('../img/photos/ThomazCamanhoSM.jpg');
}

.founder-image-wrapper.thomas {
    background-image: url('../img/photos/ThomasSempleSM2.jpg');
}

.founder-image-wrapper.rafael {
    background-image: url('../img/photos/RafaelCamanhoSM.jpg');
}

/* Hero text transforms */
#hero-text-left {
    transform: translateY(-10px);
}

#hero-text-right {
    transform: translateY(10px);
}

/* Section 07 background color */
#section-07 {
    background-color: #0f0e0e;
}

/* Grid align-items stretch */
.grid-stretch {
    align-items: stretch;
}

/* Scroll offset para compensar header fixo */
html {
    scroll-padding-top: 95px;
}

/* Ajuste específico para seções */
section[id^="section-"] {
    scroll-margin-top: 105px;
}

/* Hero não precisa de offset */
#section-hero {
    scroll-margin-top: 0;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 85px;
    }

    section[id^="section-"] {
        scroll-margin-top: 85px;
    }
}

.section-number {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #999999;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    font-weight: 200;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 17px;
    font-weight: 300;
    color: #f7f6f6;
    max-width: 600px;
    line-height: 1.8;
}

    .section-subtitle.full-width {
        max-width: 100%;
    }

    .section-subtitle strong {
        color: #FFFFFF;
        font-weight: 400;
    }

.section-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.content-block {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px;
    transition: border-color 0.3s ease;
}

    .content-block:hover {
        border-color: #FFFFFF;
    }

.block-title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.block-text {
    font-size: 13px;
    font-weight: 300;
    color: #f7f6f6;
    line-height: 1.8;
}

/* KPI Styles */
.kpi-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.kpi-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .kpi-item.animated {
        opacity: 1;
        transform: translateY(0);
    }

.kpi-number {
    font-size: 56px;
    font-weight: 200;
    letter-spacing: -2px;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.kpi-label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.kpi-description {
    font-size: 12px;
    font-weight: 300;
    color: #999999;
    line-height: 1.6;
}

/* Founders Section Styles */
.founder-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.founder-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0;
    transition: border-color 0.4s ease-in-out, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px);
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .founder-card.animated {
        opacity: 1;
        transform: translateY(0);
    }

.founder-card-link:hover .founder-card {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.founder-link-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

    .founder-link-icon i {
        font-size: 14px;
        color: #FFFFFF;
    }

.founder-card-link:hover .founder-link-icon {
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
}

.founder-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    will-change: background-size;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: background-size 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.founder-card:hover .founder-image-wrapper {
    background-size: 107%;
}

.founder-image {
    display: none;
}

.founder-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.founder-role {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 20px;
    display: block;
}

.founder-bio {
    font-size: 15px;
    font-weight: 300;
    color: #999999;
    line-height: 1.8;
    margin-bottom: 24px;
}

    .founder-bio strong {
        color: #FFFFFF;
        font-weight: 400;
    }

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    width: 100%;
}

    .linkedin-btn:hover {
        border-color: #FFFFFF;
        background: rgba(255, 255, 255, 0.05);
    }

    .linkedin-btn i {
        font-size: 14px;
    }

/* Methodology Section Styles */
.methodology-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .methodology-icon {
        font-size: 100px;
        left: -15px;
    }
}

.methodology-item {
    background: #000000;
    padding: 30px 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .methodology-item.animated {
        opacity: 1;
        transform: translateY(0);
    }

    .methodology-item:hover {
        background: rgba(255, 255, 255, 0.02);
    }

.methodology-number {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 5px;
    display: block;
    position: relative;
    z-index: 2;
}

.methodology-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.methodology-icon {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    font-size: 140px;
    color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
    z-index: 1;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.methodology-item:hover .methodology-icon {
    transform: translateY(-50%) rotate(-30deg) scale(0.92);
    color: rgba(255, 255, 255, 0.10);
}

.methodology-title {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0;
}

.methodology-description {
    font-size: 15px;
    font-weight: 300;
    color: #999999;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.methodology-conclusion {
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 60px 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.methodology-conclusion-text {
    font-size: 15px;
    font-weight: 300;
    color: #999999;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: center;
}

.methodology-quote-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .methodology-quote-wrapper.animated {
        opacity: 1;
        transform: translateY(0);
    }

.methodology-quote-icon {
    flex-shrink: 0;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2px;
}

.methodology-quote-content {
    flex: 1;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.methodology-quote {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -0.3px;
    color: #FFFFFF;
    line-height: 1.6;
    font-style: italic;
    text-align: left;
}

/* Section 01 Background */
#section-01 {
    position: relative;
    overflow: hidden;
}

    #section-01::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../img/bgs/tech.jpg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 0.20;
        z-index: 0;
    }

    #section-01 .container {
        position: relative;
        z-index: 1;
    }

/* Section 02 Background - Same as Section 01 but horizontally flipped */
#section-02 {
    position: relative;
    overflow: hidden;
}

    #section-02::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../img/bgs/tech.jpg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 0.20;
        z-index: 0;
        transform: scaleX(-1);
    }

    #section-02 .container {
        position: relative;
        z-index: 1;
    }

/* Section M&A - Media Coverage */
#section-ma {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 130px;
}

.section-ma-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bgs/tech.jpg');
     background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    transform: scaleX(-1);
}

.section-ma-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 240, 240, 0.25);
    z-index: 1;
}

#section-ma .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
}

.section-ma-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    display: flex;
    align-items: center;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
}

.section-ma-scroll-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll-ma 30s linear infinite;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-x;
}

.section-ma-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-ma {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.section-ma-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.6;
}

.section-ma-logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.section-ma-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.section-ma-logo-item:hover .section-ma-logo {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    #section-ma {
        min-height: 180px;
    }
    
    .section-ma-scroll-track {
        gap: 50px;
        animation-duration: 28s;
    }
    
    .section-ma-logo {
        height: 45px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #section-ma {
        min-height: 150px;
    }
    
    .section-ma-scroll-track {
        gap: 40px;
        animation-duration: 25s;
    }
    
    .section-ma-logo {
        height: 40px;
    }
    
    .section-ma-scroll-wrapper {
        mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    #section-ma {
        min-height: 120px;
    }
    
    .section-ma-scroll-track {
        gap: 30px;
        animation-duration: 22s;
    }
    
    .section-ma-logo {
        height: 35px;
    }
    
    .section-ma-scroll-wrapper {
        mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    }
}

/* Section 03 Background - Same as Section 01 but vertically flipped */
#section-03 {
    position: relative;
    overflow: hidden;
}

    #section-03::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../img/bgs/tech.jpg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 0.20;
        z-index: 0;
        transform: scaleY(-1);
    }

    #section-03 .container {
        position: relative;
        z-index: 1;
    }

/* Partners Image Section 01 */
.partners-image-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.partners-image-wrapper {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: border-color 0.4s ease-in-out;
}

.partners-image-link:hover .partners-image-wrapper {
    border-color: rgba(255, 255, 255, 0.3);
}

.partners-link-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

    .partners-link-icon i {
        font-size: 14px;
        color: #FFFFFF;
    }

.partners-image-link:hover .partners-link-icon {
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
}

.partners-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
}

.partners-image-link:hover .partners-image {
    transform: scale(1.02);
}

/* Section 04 Styles */
.section04-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bgs/section-01.jpeg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.45;
    z-index: 1;
}

.section04-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 60%;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .section04-cards-wrapper {
        max-width: 75%;
    }
}

@media (max-width: 640px) {
    .section04-cards-wrapper {
        max-width: 100%;
    }
}

.section04-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.section04-card {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease, border-color 0.3s ease, background 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    overflow: hidden;
}

    .section04-card.animated {
        opacity: 1;
        transform: translateX(0);
    }

.section04-card-link:hover .section04-card {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.75);
}

.section04-card-icon {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    font-size: 180px;
    color: rgba(255, 255, 255, 0.07);
    pointer-events: none;
    z-index: 1;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.section04-card-link:hover .section04-card-icon {
    transform: translateY(-50%) rotate(-30deg) scale(0.92);
    color: rgba(255, 255, 255, 0.12);
}

.section04-card-icon i {
    display: block;
}

.section04-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.section04-card-title {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.3;
}

.section04-card-text {
    font-size: 15px;
    font-weight: 300;
    color: #DDDDDD;
    line-height: 1.7;
}

.section04-cta-wrapper {
    margin-top: 60px;
    max-width: 60%;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .section04-cta-wrapper {
        max-width: 75%;
    }
}

@media (max-width: 640px) {
    .section04-cta-wrapper {
        max-width: 100%;
    }
}

.section04-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .section04-cta-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transition: left 0.4s ease;
        z-index: -1;
    }

    .section04-cta-btn:hover::before {
        left: 0;
    }

    .section04-cta-btn:hover {
        border-color: #FFFFFF;
        transform: translateY(-2px);
    }

    .section04-cta-btn i {
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .section04-cta-btn:hover i {
        transform: translateX(4px);
    }

/* Hero CTA Button - Same style as section04 */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

    .hero-cta-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transition: left 0.4s ease;
        z-index: -1;
    }

    .hero-cta-btn:hover::before {
        left: 0;
    }

    .hero-cta-btn:hover {
        border-color: #FFFFFF;
        transform: translateY(-2px);
    }

    .hero-cta-btn i {
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .hero-cta-btn:hover i {
        transform: translateX(4px);
    }

.hero-cta-wrapper {
    position: absolute;
    bottom: 40px;
    z-index: 5;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out 1s, transform 1s ease-out 1s;
}

.hero-cta-wrapper-left {
    left: 40px;
}

.hero-cta-wrapper-right {
    right: 40px;
}

.hero-cta-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-cta-wrapper {
        bottom: 30px;
    }

    .hero-cta-wrapper-left {
        left: 10px;
        right: auto;
        max-width: calc(50% - 15px);
    }

    .hero-cta-wrapper-right {
        right: 10px;
        left: auto;
        max-width: calc(50% - 15px);
    }

    .hero-cta-btn {
        font-size: 10px;
        padding: 12px 16px;
        white-space: nowrap;
        min-width: 44px;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .hero-cta-wrapper-left,
    .hero-cta-wrapper-right {
        max-width: calc(50% - 10px);
    }

    .hero-cta-btn {
        font-size: 9px;
        padding: 10px 12px;
    }
}

/* Hero Scroll Down Indicator */
.hero-scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-decoration: none;
    opacity: 0;
    animation: fadeInScrollDown 1s ease-out 2s forwards;
}

@keyframes fadeInScrollDown {
    to {
        opacity: 1;
    }
}

.hero-scroll-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    animation: bounce 2s ease-in-out infinite;
}

    .hero-scroll-circle i {
        color: #FFFFFF;
        font-size: 16px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

/* Subtle bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-scroll-down:hover .hero-scroll-circle {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    animation: none;
    transform: translateY(4px);
}

    .hero-scroll-down:hover .hero-scroll-circle i {
        transform: translateY(2px);
    }

@media (max-width: 768px) {
    .hero-scroll-down {
        bottom: 30px;
    }

    .hero-scroll-circle {
        width: 44px;
        height: 44px;
    }

        .hero-scroll-circle i {
            font-size: 14px;
        }
}

/* Section 06 - Pyramid Styles */
.pyramid-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0 0;
    position: relative;
    /*max-width: 1200px;*/
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
}

.pyramid-layer {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: -40px;
    width: 100%;
    z-index: 1;
    min-height: 100px;
}

    .pyramid-layer:last-child {
        margin-bottom: 0;
    }

    .pyramid-layer.animated {
        opacity: 1;
        transform: translateY(0);
    }

.pyramid-layer-shape {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
    pointer-events: auto;
}

    .pyramid-layer-shape:hover,
    .pyramid-layer:hover .pyramid-layer-shape {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.4);
        transform: scale(1.02);
    }

.pyramid-layer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.4s ease;
    overflow: hidden;
}

    .pyramid-layer-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transition: left 0.4s ease;
        z-index: -1;
    }

    .pyramid-layer-wrapper:hover::before {
        left: 0;
    }

    .pyramid-layer-wrapper:hover {
        transform: translateY(-2px);
    }

/* Layer 1 - Triangle (Top) - Base: 240px */
.pyramid-layer-1 .pyramid-layer-shape {
    width: 100px;
    height: 60px;
    clip-path: polygon(50% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(50% 0, 100% 100%, 0% 100%);
}

/* Layer 2 - Trapezoid - Top: 240px, Base: 360px */
.pyramid-layer-2 .pyramid-layer-shape {
    width: 180px;
    height: 60px;
    clip-path: polygon(33.33% 0, 66.67% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(33.33% 0, 66.67% 0, 100% 100%, 0% 100%);
}

/* Layer 3 - Trapezoid - Top: 360px, Base: 480px */
.pyramid-layer-3 .pyramid-layer-shape {
    width: 300px;
    height: 60px;
    clip-path: polygon(25% 0, 75% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(25% 0, 75% 0, 100% 100%, 0% 100%);
}

/* Layer 4 - Trapezoid - Top: 480px, Base: 600px */
.pyramid-layer-4 .pyramid-layer-shape {
    width: 420px;
    height: 60px;
    clip-path: polygon(20% 0, 80% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(20% 0, 80% 0, 100% 100%, 0% 100%);
}

/* Layer 5 - Trapezoid (Base) - Top: 600px, Base: 720px */
.pyramid-layer-5 .pyramid-layer-shape {
    width: 540px;
    height: 60px;
    clip-path: polygon(16.67% 0, 83.33% 0, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(16.67% 0, 83.33% 0, 100% 100%, 0% 100%);
}

@media (max-width: 768px) {
    /* Layer 1 - Triangle - Base: 180px */
    .pyramid-layer-1 .pyramid-layer-shape {
        width: 180px;
        height: 45px;
    }

    /* Layer 2 - Top: 180px, Base: 270px */
    .pyramid-layer-2 .pyramid-layer-shape {
        width: 270px;
        height: 45px;
        clip-path: polygon(33.33% 0, 66.67% 0, 100% 100%, 0% 100%);
        -webkit-clip-path: polygon(33.33% 0, 66.67% 0, 100% 100%, 0% 100%);
    }

    /* Layer 3 - Top: 270px, Base: 360px */
    .pyramid-layer-3 .pyramid-layer-shape {
        width: 360px;
        height: 45px;
        clip-path: polygon(25% 0, 75% 0, 100% 100%, 0% 100%);
        -webkit-clip-path: polygon(25% 0, 75% 0, 100% 100%, 0% 100%);
    }

    /* Layer 4 - Top: 360px, Base: 450px */
    .pyramid-layer-4 .pyramid-layer-shape {
        width: 450px;
        height: 45px;
        clip-path: polygon(20% 0, 80% 0, 100% 100%, 0% 100%);
        -webkit-clip-path: polygon(20% 0, 80% 0, 100% 100%, 0% 100%);
    }

    /* Layer 5 - Top: 450px, Base: 540px */
    .pyramid-layer-5 .pyramid-layer-shape {
        width: 540px;
        height: 45px;
        clip-path: polygon(16.67% 0, 83.33% 0, 100% 100%, 0% 100%);
        -webkit-clip-path: polygon(16.67% 0, 83.33% 0, 100% 100%, 0% 100%);
    }
}

@media (max-width: 640px) {
    /* Layer 1 - Triangle - Base: 140px */
    .pyramid-layer-1 .pyramid-layer-shape {
        width: 140px;
        height: 40px;
    }

    /* Layer 2 - Top: 140px, Base: 210px */
    .pyramid-layer-2 .pyramid-layer-shape {
        width: 210px;
        height: 40px;
        clip-path: polygon(33.33% 0, 66.67% 0, 100% 100%, 0% 100%);
        -webkit-clip-path: polygon(33.33% 0, 66.67% 0, 100% 100%, 0% 100%);
    }

    /* Layer 3 - Top: 210px, Base: 280px */
    .pyramid-layer-3 .pyramid-layer-shape {
        width: 280px;
        height: 40px;
        clip-path: polygon(25% 0, 75% 0, 100% 100%, 0% 100%);
        -webkit-clip-path: polygon(25% 0, 75% 0, 100% 100%, 0% 100%);
    }

    /* Layer 4 - Top: 280px, Base: 350px */
    .pyramid-layer-4 .pyramid-layer-shape {
        width: 350px;
        height: 40px;
        clip-path: polygon(20% 0, 80% 0, 100% 100%, 0% 100%);
        -webkit-clip-path: polygon(20% 0, 80% 0, 100% 100%, 0% 100%);
    }

    /* Layer 5 - Top: 350px, Base: 420px */
    .pyramid-layer-5 .pyramid-layer-shape {
        width: 420px;
        height: 40px;
        clip-path: polygon(16.67% 0, 83.33% 0, 100% 100%, 0% 100%);
        -webkit-clip-path: polygon(16.67% 0, 83.33% 0, 100% 100%, 0% 100%);
    }
}

/* Labels - Alternadas esquerda/direita */
.pyramid-label-wrapper {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.6s ease 0.3s, transform 0.3s ease;
    z-index: 100;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 280px;
   /* max-width: 450px;*/
    pointer-events: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Layer 1, 3, 5 - Labels à direita */
.pyramid-layer-1 .pyramid-label-wrapper,
.pyramid-layer-3 .pyramid-label-wrapper,
.pyramid-layer-5 .pyramid-label-wrapper {
    left: calc(50% + 270px);
    top: 50%;
    transform: translateY(-50%);
}

/* Layer 2, 4 - Labels à esquerda */
.pyramid-layer-2 .pyramid-label-wrapper,
.pyramid-layer-4 .pyramid-label-wrapper {
    right: calc(50% + 270px);
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    align-items: flex-end;
}

.pyramid-layer.animated .pyramid-label-wrapper {
    opacity: 1;
}

/* Hover na label/descrição → destaca camada */
.pyramid-label-wrapper:hover ~ .pyramid-layer-shape,
.pyramid-layer-wrapper:hover .pyramid-layer-shape {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: scale(1.02);
}

/* Hover na camada → destaca label/texto */
.pyramid-layer-shape:hover ~ .pyramid-label-wrapper,
.pyramid-layer-wrapper:hover .pyramid-label-wrapper {
    opacity: 1 !important;
}

.pyramid-label-wrapper:hover .pyramid-label-text,
.pyramid-layer-wrapper:hover .pyramid-label-text {
    color: #FFFFFF !important;
}

.pyramid-label-wrapper:hover .pyramid-content,
.pyramid-layer-wrapper:hover .pyramid-content {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Hover no layer inteiro */
.pyramid-layer:hover .pyramid-layer-shape {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: scale(1.02);
}

.pyramid-layer:hover .pyramid-label-wrapper {
    opacity: 1 !important;
}

.pyramid-layer:hover .pyramid-label-text {
    color: #FFFFFF !important;
}

.pyramid-layer:hover .pyramid-content {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Setas apontando para as camadas */
.pyramid-arrow {
    position: absolute;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 1;
}

/* Setas para labels à direita (Layer 1, 3, 5) - apontam para esquerda */
.pyramid-layer-1 .pyramid-arrow,
.pyramid-layer-3 .pyramid-arrow,
.pyramid-layer-5 .pyramid-arrow {
    left: -60px;
    top: 50%;
    width: 50px;
    transform: translateY(-50%);
}

    .pyramid-layer-1 .pyramid-arrow::after,
    .pyramid-layer-3 .pyramid-arrow::after,
    .pyramid-layer-5 .pyramid-arrow::after {
        content: '';
        position: absolute;
        left: -6px;
        top: -4px;
        width: 0;
        height: 0;
        border-right: 8px solid rgba(255, 255, 255, 0.3);
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        transition: border-right-color 0.3s ease;
    }

/* Setas para labels à esquerda (Layer 2, 4) - apontam para direita */
.pyramid-layer-2 .pyramid-arrow,
.pyramid-layer-4 .pyramid-arrow {
    right: -60px;
    left: auto;
    top: 50%;
    width: 50px;
    transform: translateY(-50%);
}

    .pyramid-layer-2 .pyramid-arrow::after,
    .pyramid-layer-4 .pyramid-arrow::after {
        content: '';
        position: absolute;
        right: -6px;
        left: auto;
        top: -4px;
        width: 0;
        height: 0;
        border-left: 8px solid rgba(255, 255, 255, 0.3);
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        transition: border-left-color 0.3s ease;
    }

.pyramid-label-wrapper:hover .pyramid-arrow,
.pyramid-layer:hover .pyramid-arrow {
    width: 60px;
    background: rgba(255, 255, 255, 0.6);
}

    .pyramid-label-wrapper:hover .pyramid-arrow::after,
    .pyramid-layer:hover .pyramid-arrow::after {
        border-right-color: rgba(255, 255, 255, 0.8);
        border-left-color: rgba(255, 255, 255, 0.8);
    }

.pyramid-label-text {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.pyramid-content {
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    /*max-width: 420px;*/
    transition: color 0.3s ease;
   /* word-wrap: break-word;
    overflow-wrap: break-word;*/
}

.pyramid-layer-2 .pyramid-content,
.pyramid-layer-4 .pyramid-content {
    text-align: right;
}

@media (max-width: 1024px) {
    .pyramid-label-wrapper {
        position: static;
        transform: none !important;
        align-items: center !important;
        margin-top: 20px;
    }

    .pyramid-layer-2 .pyramid-label-wrapper,
    .pyramid-layer-4 .pyramid-label-wrapper {
        align-items: center !important;
    }

    /* Hide pyramid shapes on mobile/tablet */
    .pyramid-layer-shape {
        display: none;
    }

    .pyramid-arrow {
        display: none;
    }

    /* Show labels in vertical layout */
    .pyramid-container {
        gap: 24px;
    }

    .pyramid-layer {
        margin-bottom: 0 !important;
    }

    .pyramid-layer-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .pyramid-label-wrapper {
        position: static !important;
        transform: none !important;
        align-items: center !important;
        text-align: center !important;
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        opacity: 1 !important;
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }

    .pyramid-content {
        text-align: center !important;
        max-width: 100%;
    }

    .pyramid-layer {
        flex-direction: column;
        margin-bottom: 0 !important;
    }

    .pyramid-label-text {
        text-align: center;
        width: 100%;
    }
}

.section06-cta-wrapper {
    margin-top: 30px;
    text-align: center;
}

.section06-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .section06-cta-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transition: left 0.4s ease;
        z-index: -1;
    }

    .section06-cta-btn:hover::before {
        left: 0;
    }

    .section06-cta-btn:hover {
        border-color: #FFFFFF;
        transform: translateY(-2px);
    }

    .section06-cta-btn i {
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .section06-cta-btn:hover i {
        transform: translateX(4px);
    }

/* Section 07 - Founder Styles */
.section07-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: none;
    z-index: 1;
    filter: brightness(0.6);
}

.section07-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.section07-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .section07-cards-wrapper {
        grid-template-columns: 1fr;
    }
}

.section07-card {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease, border-color 0.3s ease, background 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    overflow: hidden;
}

    .section07-card.animated {
        opacity: 1;
        transform: translateY(0);
    }

    .section07-card:hover {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(0, 0, 0, 0.75);
        transform: translateY(-5px);
    }

.section07-card-icon {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    font-size: 180px;
    color: rgba(255, 255, 255, 0.07);
    pointer-events: none;
    z-index: 1;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.section07-card:hover .section07-card-icon {
    transform: translateY(-50%) rotate(-30deg) scale(0.92);
    color: rgba(255, 255, 255, 0.12);
}

.section07-card-icon i {
    display: block;
}

.section07-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.section07-card-title {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.3;
}

.section07-card-text {
    font-size: 15px;
    font-weight: 300;
    color: #DDDDDD;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section07-card {
        padding: 24px;
    }

    .section07-card-icon {
        font-size: 120px;
        left: -20px;
    }

    .section07-card-title {
        font-size: 18px;
    }

    .section07-card-text {
        font-size: 14px;
    }
}

/* Section 08 - Tech Base Styles */
#section-08 {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.section08-bg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bgs/section-03.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@media (max-width: 768px) {
    .section08-bg {
        position: absolute;
        top: 0;
        height: 100%;
    }
}

.section08-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.section08-platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

@media (max-width: 1024px) {
    .section08-platforms-grid {
        grid-template-columns: 1fr;
    }
}

.section08-platform-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease, border-color 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .section08-platform-card.animated {
        opacity: 1;
        transform: translateY(0);
    }

    .section08-platform-card:hover {
        border-color: rgba(255, 255, 255, 0.4);
        background: rgba(0, 0, 0, 0.8);
        transform: translateY(-5px);
    }

.section08-platform-icon {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    font-size: 200px;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 1;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.section08-platform-card:hover .section08-platform-icon {
    transform: translateY(-50%) rotate(-30deg) scale(0.9);
    color: rgba(255, 255, 255, 0.1);
}

.section08-platform-title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.section08-platform-description {
    font-size: 15px;
    font-weight: 300;
    color: #DDDDDD;
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.section08-platform-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

    .section08-platform-list li {
        font-size: 14px;
        font-weight: 300;
        color: #CCCCCC;
        line-height: 1.8;
        padding-left: 20px;
        position: relative;
        margin-bottom: 8px;
    }

        .section08-platform-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: rgba(255, 255, 255, 0.5);
            font-size: 18px;
        }

.section08-benefits-wrapper {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 10;
}

.section08-benefits-title {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.3px;
    color: #FFFFFF;
    margin-bottom: 40px;
    text-align: center;
}

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

@media (max-width: 768px) {
    .section08-benefits-grid {
        grid-template-columns: 1fr;
    }
}

.section08-benefit-item {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease, border-color 0.3s ease;
}

    .section08-benefit-item.animated {
        opacity: 1;
        transform: translateY(0);
    }

    .section08-benefit-item:hover {
        border-color: rgba(255, 255, 255, 0.4);
        background: rgba(0, 0, 0, 0.75);
        transform: translateY(-5px);
    }

.section08-benefit-icon {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.section08-benefit-item:hover .section08-benefit-icon {
    color: #FFFFFF;
    transform: scale(1.1);
}

.section08-benefit-title {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.3px;
    color: #FFFFFF;
    line-height: 1.5;
    margin: 0;
}

.section08-statement {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
    z-index: 10;
}

    .section08-statement.animated {
        opacity: 1;
        transform: translateY(0);
    }

.section08-statement-text {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -0.3px;
    color: #FFFFFF;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section08-platform-card {
        padding: 30px;
    }

    .section08-platform-icon {
        font-size: 150px;
        right: -30px;
    }

    .section08-platform-title {
        font-size: 20px;
    }

    .section08-benefit-item {
        padding: 24px;
    }

    .section08-benefit-title {
        font-size: 14px;
    }

    .section08-statement-text {
        font-size: 16px;
    }
}

/* Section 05 - Investor Styles */
.investor-section {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 700ms ease-out, transform 700ms ease-out;
    overflow: hidden;
}

    .investor-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../img/bgs/tech.jpg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        transform: scaleX(-1);
        opacity: 0.45;
        z-index: 0;
    }

    .investor-section.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .investor-section .container {
        position: relative;
        z-index: 1;
    }

.investor-header {
    margin-bottom: 80px;
}

.investor-bubbles {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0 auto 80px;
    max-width: 1000px;
}

.bubble {
    border-radius: 50%;
    background: #fffdfd12;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    position: absolute;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
    padding: 20px;
}

    .bubble:hover {
        transform: scale(1.05) !important;
        box-shadow: 0 12px 32px rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
        z-index: 10;
    }

/* Bubble sizes and positions - creating organic layout */
.bubble-portfolio {
    width: 170px;
    height: 170px;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
    animation: bubbleFloat1 14s ease-in-out infinite;
}

.bubble-governance {
    width: 220px;
    height: 220px;
    font-size: 17px;
    font-weight: 600;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bubbleFloat2 16s ease-in-out infinite;
    animation-delay: 0.8s;
}

.bubble-transparency {
    width: 190px;
    height: 190px;
    font-size: 15px;
    top: 15%;
    right: 12%;
    animation: bubbleFloat3 15s ease-in-out infinite;
    animation-delay: 1.2s;
}

.bubble-validated-tech {
    width: 155px;
    height: 155px;
    bottom: 15%;
    right: 8%;
    animation: bubbleFloat4 13s ease-in-out infinite;
    animation-delay: 1.8s;
}

.bubble-ai-ventures {
    width: 145px;
    height: 145px;
    top: 8%;
    left: 18%;
    animation: bubbleFloat5 12s ease-in-out infinite;
    animation-delay: 2.4s;
}

/* Floating animations - organic movement */
@keyframes bubbleFloat1 {
    0%, 100% {
        transform: translate(0, -50%) translate3d(0, 0, 0);
    }

    25% {
        transform: translate(0, -50%) translate3d(-8px, -12px, 0);
    }

    50% {
        transform: translate(0, -50%) translate3d(5px, -8px, 0);
    }

    75% {
        transform: translate(0, -50%) translate3d(-5px, 8px, 0);
    }
}

@keyframes bubbleFloat2 {
    0%, 100% {
        transform: translate(-50%, -50%) translate3d(0, 0, 0);
    }

    25% {
        transform: translate(-50%, -50%) translate3d(10px, -15px, 0);
    }

    50% {
        transform: translate(-50%, -50%) translate3d(-8px, -10px, 0);
    }

    75% {
        transform: translate(-50%, -50%) translate3d(6px, 12px, 0);
    }
}

@keyframes bubbleFloat3 {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    25% {
        transform: translate3d(-12px, 10px, 0);
    }

    50% {
        transform: translate3d(8px, 15px, 0);
    }

    75% {
        transform: translate3d(-6px, -8px, 0);
    }
}

@keyframes bubbleFloat4 {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    25% {
        transform: translate3d(15px, -10px, 0);
    }

    50% {
        transform: translate3d(-10px, -12px, 0);
    }

    75% {
        transform: translate3d(8px, 10px, 0);
    }
}

@keyframes bubbleFloat5 {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    25% {
        transform: translate3d(-10px, 12px, 0);
    }

    50% {
        transform: translate3d(12px, -8px, 0);
    }

    75% {
        transform: translate3d(-8px, -10px, 0);
    }
}

.investor-cta {
    text-align: center;
}

.investor-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .investor-cta-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transition: left 0.4s ease;
        z-index: -1;
    }

    .investor-cta-btn:hover::before {
        left: 0;
    }

    .investor-cta-btn:hover {
        border-color: #FFFFFF;
        transform: translateY(-2px);
    }

    .investor-cta-btn i {
        font-size: 14px;
        transition: transform 0.3s ease;
    }

    .investor-cta-btn:hover i {
        transform: translateX(4px);
    }

/* Responsive for sections */
@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 12px;
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .content-block {
        padding: 20px;
    }

    .partners-image-wrapper {
        max-width: 100% !important;
    }

    .founder-image-wrapper {
        height: 250px;
    }

    .section04-card {
        padding: 24px;
    }

    .section04-card-icon {
        font-size: 120px;
        left: -20px;
    }

    .section04-card-title {
        font-size: 18px;
    }

    .section04-card-text {
        font-size: 14px;
    }

    .section04-cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 12px;
        padding: 14px 24px;
    }

    .investor-bubbles {
        height: 700px;
        margin-bottom: 60px;
    }

    .bubble {
        padding: 15px;
    }

    .bubble-portfolio {
        width: 130px;
        height: 130px;
        font-size: 12px;
        top: 8%;
        left: 8%;
        transform: none;
    }

    .bubble-governance {
        width: 160px;
        height: 160px;
        font-size: 14px;
        top: 35%;
        left: 50%;
        transform: translateX(-50%);
    }

    .bubble-transparency {
        width: 145px;
        height: 145px;
        font-size: 13px;
        top: 12%;
        right: 8%;
        left: auto;
    }

    .bubble-validated-tech {
        width: 120px;
        height: 120px;
        font-size: 12px;
        bottom: 12%;
        right: 10%;
    }

    .bubble-ai-ventures {
        width: 110px;
        height: 110px;
        font-size: 11px;
        top: auto;
        bottom: 18%;
        left: 10%;
    }

    @keyframes bubbleFloat1 {
        0%, 100% {
            transform: translate3d(0, 0, 0);
        }

        50% {
            transform: translate3d(0, -10px, 0);
        }
    }

    @keyframes bubbleFloat2 {
        0%, 100% {
            transform: translateX(-50%) translate3d(0, 0, 0);
        }

        50% {
            transform: translateX(-50%) translate3d(0, -12px, 0);
        }
    }

    .investor-cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 11px;
        padding: 14px 24px;
    }
}

/* Footer Styles */
.footer-wrapper {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bgs/section-06.jpeg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.70;
    z-index: 0;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    z-index: 1;
}

.footer-logo-section {
    position: relative;
    z-index: 2;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

.footer-description {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 280px;
}

.footer-nav-section {
    position: relative;
    z-index: 2;
}

.footer-section-title {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

    .footer-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background-color: #FFFFFF;
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .footer-link:hover {
        color: #FFFFFF;
    }

        .footer-link:hover::after {
            width: 100%;
        }

.footer-contact-section {
    position: relative;
    z-index: 2;
}

.footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .footer-contact-item i {
        font-size: 16px;
        width: 20px;
        text-align: center;
    }

    .footer-contact-item:hover {
        color: #FFFFFF;
        transform: translateX(4px);
    }

.footer-bottom {
    position: relative;
    z-index: 2;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-copyright {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

    .footer-social-link:hover {
        color: #FFFFFF;
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.05);
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .footer-wrapper {
        padding: 40px 0;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-bottom {
        text-align: center;
    }
}
