@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

:root {
    --primary-color: #2c1a10; /* Warm Coffee Brown */
    --secondary-color: #c5a35d; /* Warm Gold */
    --accent-color: #fdfaf0; /* Cream / Warm White */
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --warm-overlay: rgba(44, 26, 16, 0.75);
    --gold-gradient: linear-gradient(135deg, #c5a35d 0%, #a68549 100%);
    --font-serif: 'Playfair Display', serif;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--accent-color);
    color: var(--text-dark);
    line-height: 1.7;
}

strong {
    color: var(--secondary-color);
    font-weight: 700;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    letter-spacing: 1px;
}

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

/* Hero Section with Human Image */
.hero {
    background: url('bg-hero.png') no-repeat center center/cover;
    position: relative;
    padding: 150px 0 100px;
    color: var(--text-light);
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--warm-overlay);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-tag {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: block;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.2rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero .subheadline {
    font-size: 1.3rem;
    color: #eee;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
}

/* Buttons - Cleaned */
.btn-gold {
    display: inline-block;
    background: var(--gold-gradient);
    color: #fff;
    padding: 20px 45px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(166, 133, 73, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(166, 133, 73, 0.4);
}

/* Cards & Sections */
.section-padding {
    padding: 60px 0; /* Reduced from 100px to save vertical space */
}

.card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}

.bg-warm {
    background-color: #f7efe2;
}

.truth-statement {
    text-align: center;
}

.truth-main {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.truth-sub {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
    font-style: italic;
}

.truth-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

/* Truth Grid */
.truth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.truth-col h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.truth-item {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

/* Dobra 3 Background Variant */
.dobra-3-bg {
    background: url('bg-dobra3.png') no-repeat center center/cover;
    position: relative;
    color: #fff;
}

.dobra-3-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Darker for direct text readability */
}

.dobra-3-bg .container {
    position: relative;
    z-index: 2;
    color: #fff; /* White text for contrast */
}

.dobra-3-content {
    font-weight: 600; /* Semibold as requested */
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    text-align: center; /* Centralizing sentences */
}

.truth-alert-integrated {
    background: rgba(200, 168, 75, 0.15); 
    padding: 30px; 
    border-top: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    text-align: center;
    color: #fff;
    font-weight: 600;
    margin-top: 40px;
}

.custom-list {
    list-style: none;
    margin-top: 20px;
    display: inline-block; /* Essential for centering the list itself */
    text-align: left; /* Text inside remains left-aligned for readability, but list is centered */
}

.custom-list {
    list-style: none;
    margin-top: 20px;
}

.custom-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.custom-list li::before {
    content: '—'; /* Marcador elegante */
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}
.profile-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.profile-img img {
    width: 100%;
    border-radius: 8px;
    border: 10px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.highlight-quote {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 25px 0;
    line-height: 1.4;
    font-weight: 700;
}

.price-highlight {
    font-size: 4rem; /* Slightly smaller to save space */
    font-weight: 900;
    color: var(--secondary-color);
    display: block;
    margin: 10px auto; /* Reduced margin */
    font-family: var(--font-heading);
    line-height: 1;
}

.warranty-gold {
    margin-top: 50px;
    background: var(--gold-gradient);
    border: none !important;
    color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(166, 133, 73, 0.4);
    text-align: left; /* Alinhamento à esquerda solicitado */
    display: flex;
    align-items: center;
    gap: 30px;
}

.warranty-seal img {
    width: 120px;
    height: auto;
    flex-shrink: 0;
    mix-blend-mode: multiply; /* Removes white background */
}

.warranty-gold h3, .warranty-gold p {
    color: #fff !important;
    margin: 0;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.target-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px);
}

.target-card i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.target-card p {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
}
#mc_embed_signup {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    max-width: 650px;
    margin: 40px auto 0;
}

#mc_embed_signup label {
    display: block;
    text-align: left;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

#mc_embed_signup input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
    background: #f9f9f9;
}

#mc_embed_signup .button {
    background: var(--gold-gradient);
    color: #fff;
    height: 60px;
    width: 100%;
    font-family: var(--font-heading);
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .truth-grid { grid-template-columns: 1fr; }
    .profile-grid { grid-template-columns: 1fr; }
}
