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

/* ===========================================================
   Paleta Desphille — inspirada na logo floral
   Marfim: #faf5ec | Creme: #fdf9f2
   Rosé:   #d98a95 | Rosé claro: #f3d9dc | Rosé profundo: #b5636f
   Mocha:  #6b4226 | Mocha escuro: #4a2c18
   =========================================================== */

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

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #4a2c18;
    overflow-x: hidden;
    background: #faf5ec;
}

img {
    max-width: 100%;
}

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

h1, h2, h3,
.logo {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Header */
header {
    background: linear-gradient(135deg, #6b4226 0%, #b5636f 100%);
    color: #fdf9f2;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(107, 66, 38, 0.25);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    font-style: italic;
    color: #fdf9f2;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fdf9f2;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #f3d9dc;
}

/* Botão hambúrguer (escondido no desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fdf9f2;
    border-radius: 3px;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(74, 44, 24, 0.55), rgba(181, 99, 111, 0.45)),
                url('https://images.unsplash.com/photo-1490114538077-0a7f8cb49891?w=1600&h=900&fit=crop') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fdf9f2;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(74, 44, 24, 0.6);
}

.hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(74, 44, 24, 0.6);
}

.highlight {
    color: #d98a95;
    font-style: italic;
}

.checklist {
    text-align: left;
    display: inline-block;
    margin: 2rem 0;
}

.checklist p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.cta-button {
    background: #d98a95;
    color: #fdf9f2;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(217, 138, 149, 0.45);
}

.cta-button:hover {
    background: #b5636f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 99, 111, 0.55);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #fdf9f2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(107, 66, 38, 0.15);
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #6b4226;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #6b5a4a;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #faf5ec;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #6b4226;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b5a4a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #fdf9f2;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #f0e4d3;
    box-shadow: 0 5px 20px rgba(107, 66, 38, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(181, 99, 111, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #b5636f;
}

.service-card p {
    color: #6b5a4a;
    line-height: 1.8;
}

/* Differentials Section */
.differentials {
    padding: 5rem 0;
    background: #f3e7da;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.differential-card {
    background: #fdf9f2;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(107, 66, 38, 0.08);
}

.differential-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d98a95;
    margin-bottom: 1rem;
}

.differential-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #6b4226;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: #faf5ec;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #f3d9dc;
    color: #4a2c18;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: scale(1.05);
}

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

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #6b4226;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: #fdf9f2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(107, 66, 38, 0.12);
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: #f3e7da;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fdf9f2;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(107, 66, 38, 0.08);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #6b5a4a;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #6b4226;
}

.stars {
    color: #d98a95;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4a2c18 0%, #6b4226 55%, #b5636f 100%);
    color: #fdf9f2;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: linear-gradient(160deg, #4a2c18 0%, #6b4226 100%);
    color: #fdf9f2;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #f3d9dc;
}

.footer-section p,
.footer-section a {
    color: #e0cbb8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #f3d9dc;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #fdf9f2;
    font-size: 1.5rem;
    transition: color 0.3s;
}

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

.credits {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(253, 249, 242, 0.15);
    color: #cbb49d;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #d98a95;
    color: #fdf9f2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(217, 138, 149, 0.55);
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #b5636f;
}

/* ===================== RESPONSIVO - TABLET (≤1024px) ===================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .about-content {
        gap: 2rem;
    }

    .about-image img {
        max-width: 400px;
    }

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

/* ===================== MENU MOBILE (≤880px) ===================== */
@media (max-width: 880px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(75%, 320px);
        height: 100vh;
        background: linear-gradient(160deg, #4a2c18 0%, #6b4226 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.2rem;
        transition: right 0.35s ease;
        box-shadow: -4px 0 20px rgba(74, 44, 24, 0.35);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

/* ===================== RESPONSIVO - TABLET PEQUENO / CELULAR GRANDE (≤768px) ===================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        max-width: 320px;
    }

    .services-grid,
    .differentials-grid,
    .benefits-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .gallery-item {
        height: 250px;
    }

    .footer-content {
        text-align: center;
    }

    .footer-section a,
    .footer-section p {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }
}

/* ===================== RESPONSIVO - CELULAR (≤480px) ===================== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .hero {
        height: 90vh;
        margin-top: 56px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.85rem 1.8rem;
        font-size: 1rem;
    }

    .checklist p {
        font-size: 0.95rem;
    }

    .about,
    .services,
    .differentials,
    .benefits,
    .gallery,
    .testimonials,
    .cta-section {
        padding: 3rem 0;
    }

    .section-header h2,
    .about-text h2,
    .cta-section h2 {
        font-size: 1.6rem;
    }

    .section-header p,
    .cta-section p {
        font-size: 1rem;
    }

    .service-card,
    .differential-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .gallery-item {
        height: 220px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Evita que o menu mobile role a página por baixo dele */
body.menu-open {
    overflow: hidden;
}