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

:root {
    --color-bg: #1e1e1e;
    --color-text: #f5f5f5;
    --color-text-muted: #a3a3a3;
    --color-primary: #F58A21;
    --color-secondary: #5C91CB;
    --color-primary-glow: rgba(245, 138, 33, 0.5);
    --color-secondary-glow: rgba(92, 145, 203, 0.5);
    --color-glass-bg: rgba(40, 40, 40, 0.6);
    --color-glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
    position: relative;
}

/* Background Glow Effects */
body::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

body::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(100px);
    z-index: -1;
}


.text-gradient {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism Components */
.glass-card {
    background: var(--color-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(245, 158, 11, 0.1);
}

/* Buttons */
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    color: #000;
}

.btn-primary-custom::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

/* Animations */
@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

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

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Header & Nav */
.header-nav {
    padding: 2rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 14, 23, 0.8);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}


.hero-text-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text-content p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image-box {
    position: relative;
}

.hero-blob-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(234, 88, 12, 0.2));
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: pulse-blob 8s ease-in-out infinite alternate;
}

@keyframes pulse-blob {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* Decorative 3D elements (CSS only) */
.decor-sphere {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fbbf24, #b45309);
    box-shadow: 0 10px 30px rgba(180, 83, 9, 0.4);
}

.sphere-1 {
    width: 80px;
    height: 80px;
    top: -20px;
    right: 10%;
    animation: float 5s ease-in-out infinite;
}

.sphere-2 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 0;
    animation: float 7s ease-in-out infinite reverse;
}

/* Sections */
.content-section {
    padding: 8rem 0;
}

.section-heading {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 700;
}


.feature-icon-box {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.glass-card p {
    color: var(--color-text-muted);
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--color-glass-border);
    padding: 3rem 0;
    text-align: center;
    color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-text-content h1 {
        font-size: 3.5rem;
    }

    .hero-text-content p {
        margin: 0 auto 2.5rem;
    }

    .hero-image-box {
        margin-top: 2rem;
        height: auto;
    }

    .sphere-1,
    .sphere-2 {
        display: none;
    }

    .content-section {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .header-nav {
        padding: 1rem 0;
    }

    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-section {
        padding-top: 120px;
    }

    .hero-text-content h1 {
        font-size: 2.5rem;
    }

    .hero-text-content p {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 4rem 0;
    }

    .section-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .main-container {
        padding: 0 1.5rem;
    }

    .glass-card {
        padding: 2rem 1.5rem;
    }

    .btn-custom {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .hero-image-box .glass-card {
        padding: 2rem 1rem !important;
    }

    .hero-image-box .glass-card h3 {
        font-size: 1.5rem !important;
    }

    .hero-blob-bg {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text-content h1 {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .nav-content .btn-custom {
        width: 100%;
    }
}

/* Forms */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.75) !important;
    opacity: 1;
}

/* Testimonials */
.testimonial-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(245, 158, 11, 0.15);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(234, 88, 12, 0.4));
    border: 1px solid rgba(245, 158, 11, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Swiper Pagination Customization */
.testimonials-swiper {
    padding-top: 1.5rem;
    /* Espaço extra no topo para evitar corte do hover */
    padding-bottom: 3rem !important;
    /* Spacing for pagination dots */
}

.testimonials-swiper .swiper-pagination-bullet {
    background: var(--color-text-muted);
    opacity: 0.4;
    width: 10px;
    height: 10px;
    transition: var(--transition-smooth);
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--color-primary);
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

/* Parallax Section */
.parallax-section {
    position: relative;
    min-height: 450px;
    padding: 6rem 0;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 23, 0.92) 0%, rgba(245, 138, 33, 0.35) 100%);
    z-index: 0;
}

.parallax-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.parallax-text {
    font-size: 1.25rem;
    color: #f1f5f9;
    max-width: 800px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .parallax-section {
        min-height: 350px;
        padding: 4rem 0;
    }

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

    .parallax-text {
        font-size: 1.1rem;
    }
}

/* LGPD Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    z-index: 9999;
    padding: 1.5rem 2rem;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Override the hover transform from .glass-card so it doesn't jump */
.cookie-banner:hover {
    transform: translateX(-50%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    opacity: 1;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .cookie-text {
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}

.floating-instagram {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: #fff;
}

@media (max-width: 768px) {
    .floating-instagram {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .floating-instagram svg {
        width: 24px;
        height: 24px;
    }
}