/* ============================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ============================================ */

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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2c5f8d;
    --accent-color: #d4af37;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --gray-light: #e9ecef;
    --gray-medium: #6c757d;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

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

section {
    padding: 80px 0;
}

/* ============================================
   BADGE FLUTUANTE
   ============================================ */

.floating-badge {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #2c5f8d 0%, #1a4870 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(44, 95, 141, 0.4);
    animation: float 3s ease-in-out infinite;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-icon {
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

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

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.highlight {
    color: var(--accent-color);
}

.subheadline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.9;
}

.description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.85;
}

/* PRICE BOX */
.price-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 40px 0 30px;
}

.price-label {
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px 0;
}

.price-old {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.6;
}

.price-arrow {
    font-size: 2rem;
    color: var(--accent-color);
}

.price-new {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-savings {
    font-size: 1.1rem;
    margin: 10px 0;
    opacity: 0.9;
}

.price-installments {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* CTA BUTTON */
.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.cta-button.large {
    font-size: 1.1rem;
    padding: 20px 50px;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
}

.hero-trust {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   COST SECTION
   ============================================ */

.cost-section {
    background: var(--light-bg);
}

.cost-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.cost-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.cost-intro strong {
    color: var(--secondary-color);
}

.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.cost-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.cost-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.cost-card.highlighted {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.cost-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cost-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cost-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 15px 0;
}

.cost-card p {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.cost-solution {
    background: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-top: 40px;
}

.cost-solution h3 {
    text-align: center;
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cost-solution > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cost-benefits {
    display: grid;
    gap: 25px;
    margin-bottom: 30px;
}

.cost-benefit {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.check-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cost-benefit strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cost-benefit p {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.roi-box {
    background: linear-gradient(135deg, #d4af37 0%, #c99d2e 100%);
    color: var(--primary-color);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 30px;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-section {
    background: white;
}

.problem-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.problem-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.problem-text p {
    margin-bottom: 20px;
}

.alert-box {
    background: #fff3cd;
    border-left: 4px solid var(--warning);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.alert-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.alert-box p {
    font-size: 1.1rem;
    margin: 0;
}

.alert-box span {
    font-weight: 700;
    color: var(--primary-color);
}

/* ============================================
   WASTE SECTION
   ============================================ */

.waste-section {
    background: var(--light-bg);
}

.waste-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.waste-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.waste-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.waste-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    border-left: 4px solid var(--danger);
}

.waste-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--danger);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.waste-card h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.waste-card p {
    line-height: 1.6;
}

.waste-card strong {
    color: var(--danger);
}

.waste-cost {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.waste-cost h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.waste-cost ul {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.waste-cost li {
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

.waste-cost li:last-child {
    border-bottom: none;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */

.comparison-section {
    background: white;
}

.comparison-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.comparison-table {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-bottom: 50px;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 1px;
    background: var(--gray-light);
}

.comparison-header {
    background: var(--primary-color);
}

.comparison-header .comparison-col {
    background: var(--primary-color);
    color: white;
    padding: 20px 15px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.comparison-row .comparison-col,
.comparison-row .comparison-label {
    background: white;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
}

.comparison-label {
    font-weight: 600;
    justify-content: flex-start;
    text-align: left;
    background: var(--light-bg);
}

.comparison-col.highlight {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border-left: 3px solid var(--accent-color);
    border-right: 3px solid var(--accent-color);
}

.comparison-header .comparison-col.highlight {
    background: var(--accent-color);
    color: var(--primary-color);
}

.comparison-col small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 4px;
}

.comparison-math {
    margin-top: 60px;
}

.comparison-math h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2rem;
}

.math-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.scenario-card {
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.scenario-card.bad {
    background: linear-gradient(135deg, #ffe6e6 0%, #ffffff 100%);
    border: 2px solid var(--danger);
}

.scenario-card.good {
    background: linear-gradient(135deg, #e6f7e6 0%, #ffffff 100%);
    border: 2px solid var(--success);
}

.scenario-card h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.scenario-card > p {
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin-bottom: 20px;
}

.scenario-cost {
    font-size: 2rem;
    font-weight: 700;
    margin: 20px 0;
}

.scenario-card.bad .scenario-cost {
    color: var(--danger);
}

.scenario-card.good .scenario-cost {
    color: var(--success);
}

.scenario-result {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin-top: 15px;
    line-height: 1.8;
}

/* ============================================
   FORMATION SECTION
   ============================================ */

.formation-section {
    background: var(--light-bg);
}

.formation-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.formation-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.formation-text p {
    margin-bottom: 20px;
}

.formation-box {
    background: white;
    border-left: 4px solid var(--success);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--box-shadow);
}

.formation-icon {
    font-size: 2.5rem;
    color: var(--success);
    flex-shrink: 0;
}

.formation-box p {
    font-size: 1.05rem;
    margin: 0;
}

/* ============================================
   LEARNING SECTION
   ============================================ */

.learning-section {
    background: white;
}

.learning-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.learning-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.learning-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.learning-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
}

.learning-icon img {
    width: 40px;
    height: 40px;
}

.learning-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.learning-card p {
    line-height: 1.6;
    color: var(--gray-medium);
}

/* ============================================
   PROGRAM SECTION
   ============================================ */

.program-section {
    background: var(--light-bg);
}

.program-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.program-subtitle {
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.module-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    overflow: hidden;
}

.module-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a4870 100%);
    color: white;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.module-title h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.module-pillar {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

.module-hours {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    white-space: nowrap;
}

.module-list {
    list-style: none;
    padding: 30px;
}

.module-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--gray-light);
    line-height: 1.6;
}

.module-list li:last-child {
    border-bottom: none;
}

.module-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.module-list li.indent {
    padding-left: 60px;
    font-size: 0.95rem;
    color: var(--gray-medium);
}

/* ============================================
   REPORT SECTION
   ============================================ */

.report-section {
    background: white;
}

.report-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.report-text {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.report-text p {
    margin-bottom: 20px;
}

.report-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.report-images img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.report-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.report-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--gray-medium);
}

/* ============================================
   AUDIENCE SECTION
   ============================================ */

.audience-section {
    background: var(--light-bg);
}

.audience-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.audience-highlight {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.audience-highlight h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.audience-featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.featured-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-color);
    text-align: center;
}

.featured-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.featured-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.featured-card p {
    line-height: 1.7;
    color: var(--text-color);
}

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

.audience-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.audience-icon {
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.audience-item p {
    margin: 0;
    font-weight: 500;
}

.audience-alert {
    background: white;
    border-left: 4px solid var(--warning);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.audience-alert p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.audience-alert strong {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.audience-alert span {
    color: var(--accent-color);
}

/* ============================================
   AUTHOR SECTION
   ============================================ */

.author-section {
    background: white;
}

.author-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.author-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.author-image {
    width: 100%;
}

.author-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.author-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.author-text strong {
    color: var(--primary-color);
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */

.guarantee-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
    border-top: 4px solid var(--success);
    border-bottom: 4px solid var(--success);
}

.guarantee-badge {
    font-size: 5rem;
    text-align: center;
    margin-bottom: 20px;
}

.guarantee-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.guarantee-section h3 {
    text-align: center;
    color: var(--gray-medium);
    font-weight: 400;
    margin-bottom: 40px;
}

.guarantee-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.guarantee-content > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.guarantee-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.guarantee-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 10px;
}

.guarantee-step p {
    font-size: 0.95rem;
    max-width: 150px;
}

.guarantee-arrow {
    font-size: 2rem;
    color: var(--success);
}

.guarantee-promise {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    text-align: center;
}

.guarantee-promise p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.guarantee-note {
    font-style: italic;
    color: var(--gray-medium);
    font-size: 0.95rem !important;
}

.guarantee-reason {
    text-align: center;
}

.guarantee-reason h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.guarantee-reason p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.guarantee-final {
    font-size: 1.2rem !important;
    font-weight: 600;
    color: var(--success);
}

/* ============================================
   OFFER SECTION
   ============================================ */

.offer-section {
    background: var(--light-bg);
}

.offer-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.offer-card {
    background: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.offer-list {
    list-style: none;
    margin-bottom: 40px;
}

.offer-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-list li:last-child {
    border-bottom: none;
}

.offer-price-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: white;
    padding: 35px;
    border-radius: var(--border-radius);
    margin: 40px 0;
    text-align: center;
}

.offer-label {
    background: var(--accent-color);
    color: var(--primary-color);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.offer-original {
    margin-bottom: 20px;
    opacity: 0.7;
}

.offer-original .label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.offer-original .value {
    font-size: 1.5rem;
    text-decoration: line-through;
}

.offer-current {
    margin-bottom: 20px;
}

.offer-current .label {
    display: block;
    font-size: 1rem;
    margin-bottom: 10px;
}

.offer-current .value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.offer-savings {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    font-weight: 600;
}

.offer-installments {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.offer-warning {
    background: rgba(255, 193, 7, 0.2);
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid var(--warning);
    font-size: 0.95rem;
}

.offer-cta {
    text-align: center;
}

.offer-trust {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gray-medium);
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.site-footer p {
    margin: 0;
    opacity: 0.8;
}

.footer-note {
    margin-top: 10px !important;
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .floating-badge {
        top: 10px;
        right: 10px;
        padding: 10px 16px;
    }
    
    .badge-content {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .subheadline {
        font-size: 1.2rem;
    }
    
    .price-new {
        font-size: 2.5rem;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 15px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-row .comparison-label {
        background: var(--primary-color);
        color: white;
        font-weight: 700;
    }
    
    .comparison-col.highlight {
        border: 2px solid var(--accent-color);
    }
    
    .author-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .author-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .guarantee-steps {
        flex-direction: column;
    }
    
    .guarantee-arrow {
        transform: rotate(90deg);
    }
    
    .floating-badge {
        position: static;
        margin: 20px auto;
        display: table;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .price-new {
        font-size: 2rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 16px 20px;
        font-size: 0.9rem;
    }
    
    .offer-card,
    .guarantee-content,
    .cost-solution {
        padding: 30px 20px;
    }
    
    .learning-grid,
    .cost-grid,
    .waste-grid {
        grid-template-columns: 1fr;
    }
}

