:root {
    --phoenix-gold: #f3a600;
    --dark-bg: #121212;
    --light-text: #ffffff;
    --secondary-text: #b3b3b3;
    --card-bg: #1e1e1e;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    /* --- FUNDO ATUALIZADO --- */
    background-color: #1a1a1a; /* Base de cinza escuro */
    background-image: repeating-linear-gradient(
        45deg,
        #121212,
        #121212 15px,
        #1f1f1f 15px,
        #1f1f1f 30px
    );
    /* --- FIM DO FUNDO ATUALIZADO --- */
    color: var(--light-text);
    line-height: 1.6;
}

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

section {
    padding: 60px 0;
    text-align: center;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5em;
    font-weight: 900;
    color: var(--phoenix-gold);
    line-height: 1.2;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

h2.section-title {
    border-bottom: 3px solid var(--phoenix-gold);
    display: inline-block;
    padding-bottom: 10px;
}

p {
    font-size: 1.1em;
    color: var(--secondary-text);
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--phoenix-gold);
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.3s;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #ffc107;
}

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid var(--card-bg);
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
    z-index: 100;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}
.logo img {
    max-height: 50px;
}

/* Hero Section */
#hero {
    padding: 80px 0;
}
#hero .subtitle {
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* Trust Bar */
#trust-bar .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
}
#trust-bar .trust-item h3 {
    color: var(--phoenix-gold);
    font-size: 1.2em;
}
#trust-bar .trust-item p {
    font-size: 0.9em;
}

/* Generic Content Section Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}
.content-grid img {
    width: 100%;
    border-radius: 10px;
}

/* Features Section */
#features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}
.feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--phoenix-gold);
}
.feature-card h3 {
    font-size: 1.5em;
}
.feature-card .benefit {
    font-weight: 700;
    color: var(--phoenix-gold);
    margin-top: 15px;
}

/* Target Audience Section */
#audience ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
#audience li {
    background: var(--card-bg);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
}

/* What's in the box Section */
#box-contents .content-grid ul {
    list-style: none;
    font-size: 1.2em;
}
#box-contents .content-grid li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}
#box-contents .content-grid li::before {
    content: '✓';
    color: var(--phoenix-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}
#box-contents .cta-button {
     margin-top: 30px;
}


/* Specs Table */
#specs table {
    width: 100%;
    max-width: 700px;
    margin: 40px auto 0 auto;
    border-collapse: collapse;
    text-align: left;
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
}
#specs th, #specs td {
    padding: 15px;
    border-bottom: 1px solid #333;
}
#specs td {
    color: var(--secondary-text);
}
#specs tr:last-child th, #specs tr:last-child td {
    border-bottom: none;
}
#specs th {
    color: var(--phoenix-gold);
    width: 40%;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 1px solid var(--card-bg);
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    .content-grid {
        grid-template-columns: 1fr;
    }
    .content-grid img {
        margin-bottom: 30px;
    }
     #box-contents .content-grid > div:first-child {
        order: 2;
    }
     #box-contents .content-grid > div:last-child {
        order: 1;
    }
}