/* ===== RESET E VARIÁVEIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #EFBAB8;
    --primary-dark: #D4A5A2;
    --whatsapp: #25D366;
    --text: #000000;
    --text-light: #666666;
    --bg: #FDF8F3;
    --bg-light: #F5F0EB;
    --accent: #D4AF37;
    --border: #E8E0D8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
}

@media (min-width: 640px) {
    .header .container {
        padding: 1rem 1.5rem;
    }
}

.header-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .logo {
        width: 3rem;
        height: 3rem;
    }
}

.btn-whatsapp-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--whatsapp);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .btn-whatsapp-header {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

.btn-whatsapp-header:hover {
    background-color: #1fa857;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    font-size: 1rem;
}

.hidden-mobile {
    display: none;
}

@media (min-width: 640px) {
    .hidden-mobile {
        display: inline;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

@media (min-width: 1024px) {
    .hero {
        padding: 6rem 0;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: var(--accent);
    border-radius: 9999px;
    filter: blur(3rem);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 20rem;
    height: 20rem;
    background: var(--primary);
    border-radius: 9999px;
    filter: blur(3rem);
    opacity: 0.2;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background-color: rgba(239, 186, 184, 0.2);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.75rem;
    }
}

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

.hero-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .hero-content p {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero-content p {
        font-size: 1.125rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

.hero-footer {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .hero-footer {
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) {
    .hero-footer {
        font-size: 1rem;
    }
}

.hero-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .hero-image img {
        border-radius: 1rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
}

.testimonial-card {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: white;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 250px;
}

@media (min-width: 640px) {
    .testimonial-card {
        bottom: 1rem;
        right: 1rem;
        border-radius: 0.75rem;
        padding: 1rem 1.5rem;
    }
}

.testimonial-card p {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .testimonial-card p {
        font-size: 0.875rem;
    }
}

.testimonial-card span {
    font-size: 0.625rem;
    color: var(--text-light);
}

@media (min-width: 640px) {
    .testimonial-card span {
        font-size: 0.75rem;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

@media (min-width: 640px) {
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.btn-primary {
    background-color: var(--whatsapp);
    color: white;
    width: 100%;
}

@media (min-width: 640px) {
    .btn-primary {
        width: auto;
    }
}

.btn-primary:hover {
    background-color: #1fa857;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    width: 100%;
}

@media (min-width: 640px) {
    .btn-secondary {
        width: auto;
    }
}

.btn-secondary:hover {
    background-color: rgba(239, 186, 184, 0.05);
}

.btn-cta {
    background-color: var(--whatsapp);
    color: white;
    font-size: 1rem;
    padding: 1.5rem 2rem;
}

.btn-cta:hover {
    background-color: #1fa857;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* ===== STORY SECTION ===== */
.story {
    padding: 3rem 0;
    background-color: rgba(239, 186, 184, 0.1);
}

@media (min-width: 1024px) {
    .story {
        padding: 6rem 0;
    }
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .story-image img {
        border-radius: 1rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .story-content h2 {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .story-content h2 {
        font-size: 3rem;
    }
}

.story-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .story-content p {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .story-content p {
        font-size: 1.125rem;
    }
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
}

@media (min-width: 640px) {
    .achievement {
        font-size: 1rem;
    }
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: 3rem 0;
}

@media (min-width: 1024px) {
    .benefits {
        padding: 6rem 0;
    }
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.benefit-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .benefit-card {
        border-radius: 0.75rem;
        padding: 2rem;
    }
}

.benefit-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .benefit-card h3 {
        font-size: 1.25rem;
    }
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .benefit-card p {
        font-size: 1rem;
    }
}

/* ===== STATS SECTION ===== */
.stats {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 0;
}

@media (min-width: 1024px) {
    .stats {
        padding: 6rem 0;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 3.5rem;
    }
}

.stat p {
    font-size: 0.875rem;
    opacity: 0.9;
}

@media (min-width: 640px) {
    .stat p {
        font-size: 1rem;
    }
}

.stats-footer {
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.9;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .stats-footer {
        font-size: 1rem;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 3rem 0;
}

@media (min-width: 1024px) {
    .testimonials {
        padding: 6rem 0;
    }
}

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

@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.testimonial {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .testimonial {
        border-radius: 0.75rem;
        padding: 2rem;
    }
}

.testimonial:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.testimonial p {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .testimonial p {
        font-size: 1rem;
    }
}

.testimonial span {
    font-size: 0.75rem;
    color: var(--text-light);
}

@media (min-width: 640px) {
    .testimonial span {
        font-size: 0.875rem;
    }
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta {
        padding: 6rem 0;
    }
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .cta h2 {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .cta h2 {
        font-size: 3rem;
    }
}

.cta p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

.cta-footer {
    font-size: 0.75rem;
    opacity: 0.75;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .cta-footer {
        font-size: 0.875rem;
        margin-top: 1.5rem;
    }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--whatsapp);
    color: white;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    z-index: 40;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@media (min-width: 640px) {
    .floating-whatsapp {
        width: 4rem;
        height: 4rem;
        font-size: 2rem;
    }
}

.floating-whatsapp:hover {
    background-color: #1fa857;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: rgba(239, 186, 184, 0.1);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
}

@media (min-width: 1024px) {
    .footer {
        padding: 3rem 0;
    }
}

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

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand p,
.footer-links a,
.footer-contact a {
    font-size: 0.875rem;
    color: var(--text-light);
    text-decoration: none;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-light);
}

@media (min-width: 640px) {
    .footer-bottom p {
        font-size: 0.875rem;
    }
}

.footer-bottom p:first-child {
    margin-bottom: 0.25rem;
}

/* ===== RESPONSIVIDADE GERAL ===== */
@media (max-width: 640px) {
    .hero-image {
        order: -1;
        margin-bottom: 1rem;
    }
}
