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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333333;
    background-color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   UTILITÁRIOS
   ======================================== */

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

/* ========================================
   HEADER / NAVEGAÇÃO
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    padding: 16px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #ce9cb4;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    color: #ce9cb4;
}

.nav {
    display: none;
    gap: 4px;
}

.nav a {
    padding: 8px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.nav a:hover {
    background-color: #f5f5f5;
}

.nav-cta {
    background-color: #ce9cb4 !important;
    color: #ffffff !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background-color: #b88aa0 !important;
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1596755389378-c31d21fd1273?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.7)
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 80px 20px;
    max-width: 800px;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 24px;
}

.droplet-icon {
    color: #ce9cb4;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(51, 51, 51, 0.9);
    margin-bottom: 32px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #d4af37;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #c09e2f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(51, 51, 51, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.badge svg {
    color: #ce9cb4;
}

/* ========================================
   METHOD SECTION
   ======================================== */

.method-section {
    padding: 80px 0;
    background-color: #f9f5f0;
    text-align: center;
}

.method-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    background-color: rgba(206, 156, 180, 0.1);
    border-radius: 50%;
    margin-bottom: 24px;
}

.method-icon svg {
    color: #ce9cb4;
}

.method-section h2 {
    font-size: 32px;
    color: #333333;
    margin-bottom: 24px;
}

.method-text {
    font-size: 18px;
    color: #737373;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   CONTENT SECTION
   ======================================== */

.content-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 36px;
    color: #333333;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #737373;
    text-align: center;
    margin-bottom: 48px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.content-card {
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.content-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.card-icon {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    background-color: rgba(206, 156, 180, 0.1);
    border-radius: 50%;
    margin-bottom: 16px;
}

.card-icon svg {
    color: #ce9cb4;
}

.content-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.content-card p {
    color: #737373;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits-section {
    padding: 80px 0;
    background-color: #f9f5f0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.benefits-image img {
    border-radius: 6px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefits-content h2 {
    font-size: 32px;
    color: #333333;
    margin-bottom: 24px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.benefit-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: rgba(206, 156, 180, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.benefit-check svg {
    color: #ce9cb4;
}

.benefit-item p {
    font-size: 18px;
    color: #333333;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.testimonial-card {
    background-color: rgba(249, 245, 240, 0.5);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.quote-icon {
    color: rgba(206, 156, 180, 0.4);
    margin-bottom: 16px;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    color: #333333;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: #ce9cb4;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.author-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #333333;
    font-size: 14px;
}

.author-role {
    font-size: 13px;
    color: #737373;
}

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

.offer-section {
    padding: 80px 0;
    background-color: rgba(206, 156, 180, 0.05);
    text-align: center;
}

.offer-title {
    font-size: 36px;
    color: #333333;
    margin-bottom: 16px;
}

.offer-subtitle {
    font-size: 20px;
    color: #737373;
    margin-bottom: 32px;
}

.offer-box {
    max-width: 500px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.price-old {
    color: #737373;
    text-decoration: line-through;
    font-size: 18px;
    margin-bottom: 8px;
}

.price-current {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #ce9cb4;
    margin-bottom: 8px;
}

.price-note {
    color: #737373;
    margin-bottom: 32px;
}

.bonus-list {
    text-align: left;
    margin-bottom: 32px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.bonus-item svg {
    color: #ce9cb4;
    flex-shrink: 0;
}

.btn-cta {
    width: 100%;
    background-color: #ce9cb4;
    color: #ffffff;
    padding: 20px 32px;
    font-size: 18px;
    font-weight: 600;
}

.btn-cta:hover {
    background-color: #b88aa0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(206, 156, 180, 0.3);
}

.guarantee-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #737373;
    font-size: 14px;
}

.guarantee-badge svg {
    color: #ce9cb4;
}

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

.footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-col h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #737373;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ce9cb4;
}

.footer-col p {
    color: #737373;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #737373;
    transition: all 0.3s;
}

.social-links a:hover {
    color: #ce9cb4;
    border-color: #ce9cb4;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #737373;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (min-width: 768px) {
    .nav {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   RESPONSIVE - DESKTOP
   ======================================== */

@media (min-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .section-title {
        font-size: 40px;
    }

    .offer-title {
        font-size: 40px;
    }

    .content-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .method-section h2 {
        font-size: 36px;
    }

    .benefits-content h2 {
        font-size: 36px;
    }
}
