:root {
    --dark-bg: #0A0A0A;
    --text-color: #FFFFFF;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Fundo com gradiente e estrelas */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at bottom, #0c0d13 0%, #0c0d13 100%);
    opacity: 1;
    z-index: -2;
}

/* Estrelas */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 10% 10%, rgba(255, 255, 255, 0.1) 1px, transparent 0),
        radial-gradient(1px 1px at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 0),
        radial-gradient(1px 1px at 30% 30%, rgba(255, 255, 255, 0.1) 1px, transparent 0),
        radial-gradient(1px 1px at 40% 40%, rgba(255, 255, 255, 0.1) 1px, transparent 0),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 550px 550px;
    z-index: -1;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background: transparent;
}

/* Classe para quando rolar a página */
.navbar-fixed {
    background: #0c0d13;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px; /* Ajuste este valor conforme o tamanho da sua logo */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

/* Adicione um efeito de hover mais elaborado */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, #8d17ff, #6b22af);
    transition: width 0.3s ease;
}

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

.nav-scrolled .nav-links a:hover {
    color: #8d17ff;
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10% 10%;
    gap: 4rem;
    position: relative;
    margin-top: 5%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.gradient-text {
    font-family: 'Sora', sans-serif;
    font-size: 4.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
    letter-spacing: -1px;
}

.fraseHero {
    font-family: 'Sora', sans-serif;
    font-size: 4.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
    letter-spacing: -1px;
}

.fraseHero span {
    background: linear-gradient(to right, #fd6100, #ffe1ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 540px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
    }

    .fraseHero {
        font-size: 4rem;
    }

    .hero-description {
        margin: 0 auto 2rem auto;
    }

    .hero-image img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column-reverse;
        padding-top: 60px;
    }

    .hero-image {
        /* margin-bottom: 2rem; */
        margin-top: 29%;
    }

    .fraseHero {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: -20%;
        padding: 0 15px;
    }

    nav {
        flex-direction: column;
        gap: 20px;
        /* padding: 1rem 5%; */
    }

    .logo {
        justify-content: center;
        width: 100%;
    }

    .logo img {
        height: 35px;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: block;
    }
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Seção About Moderna */
.about-section {
    position: relative;
    min-height: 100vh;
    padding: 47px 10%;
    overflow: hidden;
    background: transparent;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

/* Botão Glowing */
.glowing-button {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    background: rgba(93, 38, 193, 0.3);
    border-radius: 50px;
    padding: 2px;
}

.button-content {
    position: relative;
    padding: 12px 40px;
    background: rgba(93, 38, 193, 0.4);
    color: #fff;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    display: inline-block;
    text-transform: uppercase;
}

.button-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #5D26C1, #a17fe0);
    border-radius: 50px;
    filter: blur(15px);
    opacity: 0.5;
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% { transform: scale(0.95); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.5; }
    100% { transform: scale(0.95); opacity: 0.3; }
}

/* Título com animação */
.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.highlight-text {
    background: linear-gradient(to right, #fd6100, #ffe1ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

@keyframes gradientFlow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Cards modernos */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(253, 97, 0, 0.3);
}

.feature-card .card-content {
    position: relative;
    padding: 40px 30px;
    text-align: center;
    z-index: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: #fd6100;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(253, 97, 0, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Formas flutuantes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #8d17ff, #6b22af);
    filter: blur(50px);
    opacity: 0.1;
    animation: floatAnimation 20s infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: -200px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes floatAnimation {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, 50px) rotate(120deg); }
    66% { transform: translate(-50px, 20px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Responsividade */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.8rem;
    }
}

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

    .section-title {
        font-size: 2.2rem;
    }

    .about-section {
        padding: 80px 5%;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        max-width: 100%;
    }
}

/* Ajuste para o conteúdo não ficar embaixo do navbar */
main {
    position: relative;
    padding-top: 0;
}

/* Seção Vantagens */
.advantages-section {
    position: relative;
    min-height: 100vh;
    padding: 47px 10%;
    overflow: hidden;
    background: transparent;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

.advantages-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.advantages-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.advantages-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.advantage-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
}

.advantage-icon {
    font-size: 2rem;
    color: #fd6100;
    min-width: 50px;
    display: flex;
    align-items: center;
}

.advantage-content h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fd6100;
    -webkit-background-clip: text;
}

.advantage-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsividade */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .advantages-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

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

    .advantages-header .section-title {
        font-size: 2rem;
        line-height: 1.3;
        padding: 0 10px;
    }

    .advantage-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .advantage-icon {
        justify-content: center;
        margin-bottom: 15px;
    }

    .advantage-content h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .advantage-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .advantages-section {
        padding: 30px 5%;
    }

    .advantages-content {
        margin-top: 40px !important;
    }
}

/* Ajuste do header da seção vantagens */
.advantages-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ajuste do título principal */
.advantages-header .section-title {
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
}

/* Seção Requisitos */
.requirements-section {
    position: relative;
    min-height: 100vh;
    padding: 47px 10%;
    overflow: hidden;
    background: transparent;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.requirement-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
}

.requirement-icon {
    font-size: 2rem;
    color: #fd6100;
    min-width: 50px;
    display: flex;
    align-items: center;
}

.requirement-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.requirements-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.requirements-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

/* Responsividade */
@media (max-width: 1024px) {
    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .requirements-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .requirement-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .requirement-icon {
        margin-bottom: 15px;
    }

    .requirement-item h3 {
        font-size: 1.2rem;
    }
}

/* Ajuste do header da seção requisitos */
.requirements-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ajuste do título principal dos requisitos */
.requirements-header .section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
}

/* Ajuste do botão glowing para os requisitos */
.requirements-header .glowing-button {
    margin-bottom: 40px;
}

/* Seção Países Parceiros */
.partners-section {
    position: relative;
    min-height: 100vh;
    padding: 47px 10%;
    overflow: hidden;
    background: transparent;
}

.partners-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.continent-block {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.continent-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.country-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.country-item {
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.country-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.country-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.country-flag {
    font-size: 1.8rem;
    line-height: 1;
}

/* Responsividade */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .continent-title {
        font-size: 2rem;
    }

    .country-item {
        padding: 12px 20px;
    }

    .country-name {
        font-size: 1rem;
    }

    .country-flag {
        font-size: 1.5rem;
    }
}

/* Seção Cases de Sucesso */
.success-section {
    position: relative;
    min-height: 100vh;
    padding: 47px 10%;
    overflow: hidden;
    background: transparent;
}

.success-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.success-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    cursor: pointer;
    aspect-ratio: 4/5;
    max-width: 400px;
    margin: 0 auto;
}

.success-card:hover {
    transform: translateY(-10px);
}

.success-card:hover .card-overlay {
    opacity: 1;
}

.player-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.player-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 2;
}

.player-info h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.country-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

/* Responsividade */
@media (max-width: 1024px) {
    .success-grid {
        gap: 20px;
    }

    .player-info h3 {
        font-size: 1.4rem;
    }
}

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

    .success-card {
        aspect-ratio: 3/4;
    }

    .player-info {
        padding: 20px 15px;
    }
}

/* Seção CTA (Call to Action) */
.cta-section {
    position: relative;
    min-height: 100vh;
    padding: 47px 5%;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-text-wrapper {
    text-align: center;
    animation: slideInLeft 1s ease-out;
}

.cta-title {
    font-family: 'Sora', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.cta-button-wrapper {
    margin-top: 20px;
    animation: slideInRight 1s ease-out;
}

.highlight-word {
    background: linear-gradient(45deg, #fd6100, #ffe1ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.animated-text {
    margin-top: 20px;
}

.animated-text span {
    display: block;
    font-size: 4.5rem;
}

.emphasis-text {
    color: #fd6100;
    position: relative;
    display: inline-block;
    animation: pulseText 2s infinite;
}

.cta-image-wrapper {
    margin: 60px auto;
    max-width: 900px;
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(253, 97, 0, 0.2),
        rgba(255, 225, 202, 0.2)
    );
    mix-blend-mode: overlay;
}

.pulse-button {
    background: linear-gradient(45deg, #fd6100, #ff8534);
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    animation: buttonPulse 1.5s infinite;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fd6100;
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
    opacity: 0.3;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 80%; animation-delay: -3s; }
.particle:nth-child(3) { top: 40%; left: 40%; animation-delay: -6s; }
.particle:nth-child(4) { top: 80%; left: 20%; animation-delay: -9s; }
.particle:nth-child(5) { top: 10%; left: 60%; animation-delay: -12s; }

@keyframes pulseText {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes buttonPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translate(100px, 100px) rotate(360deg);
        opacity: 0.3;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .cta-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
    
    .animated-text span {
        font-size: 2.5rem;
    }
    
    .pulse-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    position: relative;
    background: rgba(13, 18, 28, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 0;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(45deg, #fd6100, #ff8534);
    transform: translateY(-3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item i {
    color: #fd6100;
}

.newsletter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter h3 {
    color: #fff;
    font-size: 1.2rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group:last-child {
    display: flex;
    gap: 10px;
    align-items: center;
}

.newsletter-input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.9rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: #fd6100;
}

.newsletter-button {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(45deg, #fd6100, #ff8534);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fd6100;
}

.developed-by {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.developed-by img {
    height: 60px;
    margin-left: -7px;
    width: auto;
    transition: transform 0.3s ease;
}

.developed-by:hover img {
    transform: scale(1.1);
}

/* Responsividade do Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-right {
        grid-column: span 2;
    }
}

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

    .footer-right {
        grid-column: auto;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .developed-by img {
        height: 60px;
        margin-left: -7px;
    }
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    z-index: 2;
}

.whatsapp-float-button i {
    font-size: 2rem;
    color: #fff;
}

.whatsapp-float-box {
    background: #25D366;
    padding: 8px 15px;
    border-radius: 5px;
    margin-right: 0;
    margin-left: 10px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.whatsapp-float-box span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.whatsapp-float-box::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-right: 8px solid #25D366;
    border-left: none;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-float-box {
    opacity: 1;
    transform: translateX(0);
}

.pulse-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.5;
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Responsividade do WhatsApp Flutuante */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float-button i {
        font-size: 1.7rem;
    }

    .pulse-ring {
        width: 50px;
        height: 50px;
    }
}

/* Pop-up de Sucesso */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 18, 28, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-popup.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: popupIn 0.5s ease forwards;
}

.popup-icon {
    font-size: 4rem;
    color: #fd6100;
    margin-bottom: 20px;
    animation: iconPulse 2s infinite;
}

.popup-content h3 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.popup-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.popup-close-btn {
    background: linear-gradient(45deg, #fd6100, #ff8534);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    transform: translateY(-3px);
}

@keyframes popupIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsividade do Pop-up */
@media (max-width: 768px) {
    .popup-content {
        padding: 30px 20px;
    }

    .popup-content h3 {
        font-size: 1.5rem;
    }

    .popup-content p {
        font-size: 1rem;
    }

    .popup-close-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, #0d1d31 0%, #0c0d13 100%);
}

.preloader-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 15% 15%, rgba(255, 255, 255, 0.15) 1px, transparent 0),
        radial-gradient(2px 2px at 30% 30%, rgba(255, 255, 255, 0.15) 1px, transparent 0),
        radial-gradient(2px 2px at 45% 45%, rgba(255, 255, 255, 0.15) 1px, transparent 0),
        radial-gradient(2px 2px at 60% 60%, rgba(255, 255, 255, 0.15) 1px, transparent 0),
        radial-gradient(2px 2px at 75% 75%, rgba(255, 255, 255, 0.15) 1px, transparent 0);
    background-size: 550px 550px;
    animation: animateStars 100s linear infinite;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-height: 100vh;
}

.preloader-logo {
    height: 60px;
    width: auto;
    animation: pulse 2s infinite;
}

.preloader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #fd6100;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 4px solid transparent;
    border-top: 4px solid #ff8534;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes animateStars {
    from { background-position: 0 0; }
    to { background-position: 550px 550px; }
}

/* Pop-up de Agentes - Novo Design */
.agents-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 18, 28, 0.95);
    backdrop-filter: blur(20px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s ease;
}

.agents-popup.active {
    display: flex;
    opacity: 1;
}

.agents-popup-content {
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    animation: slideUp 0.5s ease forwards;
}

.agents-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.agents-popup-title {
    text-align: left;
}

.title-label {
    display: block;
    font-size: 1rem;
    color: #fd6100;
    margin-bottom: 8px;
    letter-spacing: 2px;
    font-weight: 500;
}

.agents-popup-title h2 {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, #fd6100);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.agents-popup-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.agents-popup-close:hover {
    color: #fd6100;
    transform: rotate(90deg);
}

.agents-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.agent-item {
    position: relative;
}

.agent-item-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.agent-item-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(253, 97, 0, 0.1), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.agent-item-content:hover {
    transform: translateY(-5px);
    border-color: rgba(253, 97, 0, 0.3);
}

.agent-item-content:hover::before {
    opacity: 1;
}

.agent-info {
    position: relative;
    z-index: 1;
}

.agent-name {
    margin-bottom: 20px;
}

.agent-name h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.agent-role {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.agent-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: translateX(5px);
    background: #22c35e;
}

.agent-number {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .agents-popup-content {
        padding: 30px 20px;
    }

    .agents-popup-title h2 {
        font-size: 2.2rem;
    }

    .title-label {
        font-size: 0.9rem;
    }

    .agent-item-content {
        padding: 20px;
    }

    .agent-name h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .agents-popup-title h2 {
        font-size: 1.8rem;
    }

    .agents-cards {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar personalizada para o popup */
.agents-popup-content::-webkit-scrollbar {
    width: 8px;
}

.agents-popup-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.agents-popup-content::-webkit-scrollbar-thumb {
    background: rgba(253, 97, 0, 0.5);
    border-radius: 4px;
}

.agents-popup-content::-webkit-scrollbar-thumb:hover {
    background: rgba(253, 97, 0, 0.7);
}

/* Seção Fundadores */
.founders-section {
    padding: 100px 10%;
    position: relative;
    overflow: hidden;
}

.founders-content {
    position: relative;
    z-index: 2;
}

.founders-header {
    text-align: center;
    margin-bottom: 60px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-10px);
    border-color: rgba(253, 97, 0, 0.3);
}

.founder-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: transform 0.5s ease;
}

.founder-card:hover .founder-image img {
    transform: scale(1.1);
}

.founder-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.founder-info {
    padding: 30px;
    text-align: center;
}

.founder-info h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Sora', sans-serif;
}

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

.founder-social {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    background: #fd6100;
    transform: translateX(5px);
}

.instagram-link i {
    font-size: 1.2rem;
    color: #fff;
}

.instagram-link span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsividade */
@media (max-width: 768px) {
    .founders-section {
        padding: 60px 5%;
    }

    .founder-card {
        max-width: 350px;
        margin: 0 auto;
    }

    .founder-image {
        height: 350px;
    }

    .founder-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .founder-image {
        height: 300px;
    }

    .founder-info {
        padding: 20px;
    }
}
