/* Global Styles & Variables */
:root {
    --primary-color: #006EE1;
    --secondary-color: #ffa500;
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --text-light: #f5f5f5;
    --text-gray: #b0b0b0;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-blue: linear-gradient(135deg, #006EE1 0%, #004a99 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Helper Classes */
.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--secondary-color);
}

.text-blue {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gradient-gold);
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.6);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 165, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, #2a2a2a 0%, #121212 100%);
    position: relative;
    padding-top: 100px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #b0b0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.hero-image {
    flex: 1;
    position: relative;
}

.floating-icon {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.icon-1 {
    top: -20px;
    right: 20px;
    width: 80px;
}

.icon-2 {
    bottom: 40px;
    left: -20px;
    width: 60px;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* About Section */
.about {
    background-color: var(--bg-card);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* For Whom Section */
.target-audience-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.target-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.target-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.check-icon {
    color: var(--secondary-color);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Bio Section */
.bio-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(to right, #1e1e1e, #121212);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bio-text {
    flex: 2;
}

.bio-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* Modules Carousel */
.modules-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.modules-carousel::-webkit-scrollbar {
    display: none;
}

.module-card {
    min-width: 250px;
    border-radius: 15px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: var(--transition);
}

.module-card:hover {
    transform: scale(1.05);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #252525;
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* FAQ Accordion */
.accordion {
    max-width: 800px;
    margin: 40px auto;
}

.accordion-item {
    background: #1e1e1e;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #2a2a2a;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #181818;
    transition: max-height 0.3s ease-out, padding 0.3s;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 1000px;
    /* Adjust based on content */
}

.icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.accordion-item.active .icon {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background: #000;
    padding: 50px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Offer Section */
.offer-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://gestoraltaperformance.com.br/wp-content/uploads/2025/09/cas-1401x2048.png');
    /* Using one of the bg images */
    background-size: cover;
    background-position: center;
    text-align: center;
}

.price-card {
    background: rgba(30, 30, 30, 0.95);
    padding: 50px;
    border-radius: 20px;
    display: inline-block;
    border: 2px solid var(--secondary-color);
    max-width: 600px;
    backdrop-filter: blur(10px);
}

.price-old {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.2rem;
}

.price-new {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {

    .hero-content,
    .about-grid,
    .bio-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .bio-image {
        width: 100%;
    }

    .target-item {
        justify-content: center;
    }
}