:root {
    --preto: #000000;
    --azul-escuro: #0a192f;
    --dourado: #FFD700;
    --vermelho: #c92b2b;
    --branco: #f8f9fa;
    --cinza-claro: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: var(--branco);
    color: var(--preto);
    line-height: 1.6;
}

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

/* Header */
header {
    background-color: var(--azul-escuro);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--branco);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: var(--dourado);
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, var(--azul-escuro) 60%, var(--preto));
    color: var(--branco);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(var(--dourado), transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

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

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

.hero h1 span {
    color: var(--dourado);
    position: relative;
}

.hero h1 span::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--vermelho);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Content Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--azul-escuro);
    margin-bottom: 15px;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--dourado);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.content {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
}

.highlight {
    color: var(--dourado);
    font-weight: 600;
}

/* Method Section */
.method {
    background-color: var(--cinza-claro);
}

.method-list {
    list-style: none;
    counter-reset: custom-counter;
}

.method-list li {
    margin-bottom: 30px;
    padding-left: 80px;
    position: relative;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.method-list li::before {
    counter-increment: custom-counter;
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--azul-escuro);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 0 0 4px var(--branco), 0 0 0 6px var(--vermelho);
}

/* Strategy Section */
.strategy {
    background-color: var(--azul-escuro);
    color: var(--branco);
}

.strategy .section-title h2 {
    color: var(--branco);
}

.strategy-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-left: 4px solid var(--vermelho);
    border-radius: 4px;
}

/* CTA Section */
.cta {
    text-align: center;
    background: linear-gradient(to right, var(--preto), var(--azul-escuro));
    color: var(--branco);
    padding: 100px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--dourado);
    color: var(--preto);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    background-color: var(--vermelho);
    color: var(--branco);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 43, 43, 0.4);
}

/* Footer */
footer {
    background-color: var(--preto);
    color: var(--branco);
    padding: 40px 0;
    text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .method-list li {
        padding-left: 70px;
    }
    
    .method-list li::before {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
