/* === VARIABLES & BASE STYLES === */
:root {
    --bg-dark: #0f1115;
    --bg-darker: #08090b;
    --bg-card: #1c1f26;
    --text-main: #f0f0f0;
    --text-muted: #a0a5b1;
    --gold-primary: #d4af37;
    --gold-hover: #b5952f;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    /* geometric polygon texture */
    background-color: #0f1115;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800' opacity='0.08'%3E%3Cpath fill='%23d4af37' d='M800 400L400 0 0 400l400 400 400-400zm-400 0L200 200l200-200 200 200-200 200z'/%3E%3C/svg%3E"),
        radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 80%);
    background-attachment: scroll;
    background-size: 800px 800px, 100vw 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title.left-align {
    text-align: left;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--gold-primary);
    margin: 15px auto 0;
}

.section-title.left-align::after {
    margin: 15px 0 0;
}

/* === BUTTONS === */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), #e6c86e);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
    margin-top: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #e6c86e, var(--gold-primary));
}

/* === BLOCO 1: HERO SECTION === */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(to bottom, rgba(8, 9, 11, 0.8), transparent);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.headline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 6vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* === BLOCO 2: PAIN SECTION === */
.pain-section {
    padding: 60px 0;
    background-color: rgba(8, 9, 11, 0.7);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pain-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid var(--gold-primary);
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-10px);
}

.pain-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.pain-card h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* === BLOCO 3: SOLUTION SECTION === */
.solution-section {
    padding: 60px 0;
}

.solution-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.solution-text {
    flex: 1;
}

.solution-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.solution-text strong {
    color: var(--gold-primary);
}

.solution-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* === BLOCO 4: AUTHORITY SECTION === */
.authority-section {
    padding: 60px 0;
    background-color: rgba(8, 9, 11, 0.7);
}

.authority-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

@media (min-width: 992px) {
    .authority-grid {
        flex-direction: row;
        align-items: center;
    }
}

.authority-text {
    flex: 1;
}

.story-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-style: italic;
    border-left: 4px solid var(--gold-primary);
    padding-left: 20px;
}

.authority-gallery {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-img {
    width: 100%;
    object-fit: contain;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
}

.main-img {
    max-height: 400px;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-row img {
    height: auto;
    max-height: 150px;
}

/* === BLOCO 5: TRUST SECTION === */
.trust-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: var(--bg-card);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-img {
    flex: 1;
    max-width: 400px;
    border-radius: 8px;
}

.trust-text {
    flex: 1;
}

.alert-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.highlight-quote {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* === BLOCO 6: OFFER SECTION === */
.offer-section {
    padding: 60px 0;
    background-color: rgba(8, 9, 11, 0.7);
}

.offer-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-direction: column-reverse;
}

@media (min-width: 992px) {
    .offer-content {
        flex-direction: row;
    }
}

.offer-text {
    flex: 1;
}

.offer-text h3 {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-image {
    flex: 1;
    text-align: center;
}

.mockup-img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* === BLOCO 7: CLOSING SECTION === */
.closing-section {
    padding: 60px 0;
    text-align: center;
}

.closing-content {
    max-width: 800px;
    margin: 0 auto;
}

.closing-img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.closing-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.closing-text strong {
    color: #fff;
}

.urgency-text {
    font-weight: 700;
    color: var(--gold-primary) !important;
    font-size: 1.3rem !important;
    margin-top: 2rem;
}

.final-btn {
    font-size: 1.3rem;
    padding: 24px 48px;
    margin-top: 2rem;
    width: 100%;
    max-width: 500px;
}

/* === FOOTER === */
footer {
    background-color: var(--bg-darker);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* === RESPONSIVE AJUSTES BASICOS === */
@media (max-width: 768px) {
    .headline {
        font-size: clamp(1.4rem, 7vw, 2rem);
        letter-spacing: -0.3px;
        line-height: 1.2;
    }

    .section-title {
        font-size: 2rem;
    }

    .solution-content,
    .trust-content {
        flex-direction: column;
    }

    .main-img {
        height: 250px;
    }

    .gallery-row {
        grid-template-columns: 1fr;
    }

    .gallery-row img {
        height: 200px;
    }
}