/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

/* Typography & Utilities */
.highlight-text {
    color: #8c52ff;
    /* Fallback */
    background: linear-gradient(90deg, #8c52ff, #5ce1e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    text-transform: uppercase;
}

.highlight {
    color: #8c52ff;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, #8c52ff, #a16eff);
    color: #000;
    font-weight: 800;
    padding: 15px 30px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 15px rgba(140, 82, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(140, 82, 255, 0.8);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 2;
}

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

.logo h2 {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.logo span {
    font-weight: 300;
    font-size: 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.subtext {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 450px;
}

.cta-prompt {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-placeholder-hero {
    width: 400px;
    height: 500px;
    background: linear-gradient(180deg, rgba(140, 82, 255, 0.2), rgba(0, 0, 0, 0));
    border-radius: 20px;
    /* Placeholder shape */
    position: relative;
}

/* Add a pseudo-element to simulate the person if no image */
.image-placeholder-hero::after {
    content: "Foto da Anne";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.3);
    border: 2px dashed rgba(140, 82, 255, 0.3);
    border-radius: 20px;
}

/* Ticker Section */
.ticker-wrap {
    width: 100%;
    background-color: #000;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 0.9rem;
    color: #fff;
}

.ticker-item .flag {
    font-size: 1.2rem;
    margin-right: 5px;
}

.ticker-item .price {
    font-weight: bold;
    margin: 0 5px;
}

.ticker-item .change {
    font-size: 0.8rem;
}

.change.positive {
    color: #00ff00;
}

.change.negative {
    color: #ff0000;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assuming content is duplicated */
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    position: relative;
    text-align: center;
    background: #050505;
}

.center-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: -50px;
    /* Overlap with title/grid */
    position: relative;
    z-index: 1;
}

.center-image {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(140, 82, 255, 0.3));
}

/* Triangle styles removed/commented as they are replaced by the image */
.triangle-frame {
    width: 200px;
    height: 200px;
    /* Triangle clip path */
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(180deg, #8c52ff, #000);
    padding: 2px;
    /* Border width */
}

.image-placeholder-triangle {
    width: 100%;
    height: 100%;
    background: #111;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    margin-top: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: #0f0f0f;
    border: 1px solid #222;
    padding: 30px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #8c52ff;
}

.benefit-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #8c52ff;
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 500;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(20, 20, 50, 0.6), #000 70%);
}

.final-cta h2 {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 40px;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}