@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

/* ===========================================================
   Paleta THE POLO — inspirada na logo em madeira e relevo creme
   Madeira escura:  #2a1d14 | Madeira média: #4a3423 | Madeira clara: #6b4a30
   Creme:           #f5efe3 | Creme claro:   #faf7f0
   Dourado/latão:   #b8955a | Dourado claro: #d4b782
   Verde clube:     #33473a (acento pontual)
   =========================================================== */

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

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2a1d14;
    overflow-x: hidden;
    background: #faf7f0;
}

img {
    max-width: 100%;
}

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

h1, h2, h3,
.logo {
    font-family: 'Oswald', 'Segoe UI', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header */
header {
    background: linear-gradient(135deg, #2a1d14 0%, #4a3423 100%);
    color: #f5efe3;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid #b8955a;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5efe3;
    letter-spacing: 2px;
}

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

.nav-links a {
    color: #f5efe3;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

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

/* 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: #f5efe3;
    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: #f5efe3;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-family: 'Montserrat', sans-serif;
    text-transform: none;
    letter-spacing: normal;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.highlight {
    color: #d4b782;
}

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

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

.cta-button {
    background: #b8955a;
    color: #2a1d14;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(184, 149, 90, 0.45);
}

.cta-button:hover {
    background: #d4b782;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 149, 90, 0.6);
}

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

.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: 4px;
    box-shadow: 0 8px 25px rgba(42, 29, 20, 0.25);
    margin: 0 auto;
    border: 3px solid #b8955a;
}

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

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

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

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

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

.section-header p {
    font-size: 1.2rem;
    color: #5a4636;
    text-transform: none;
    letter-spacing: normal;
}

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

.service-card {
    background: #faf7f0;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #d9c7a8;
    border-top: 3px solid #b8955a;
    box-shadow: 0 5px 20px rgba(42, 29, 20, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(42, 29, 20, 0.22);
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #4a3423;
}

.service-card p {
    color: #5a4636;
    line-height: 1.8;
    text-transform: none;
    letter-spacing: normal;
}

/* Differentials Section */
.differentials {
    padding: 5rem 0;
    background: #2a1d14;
    color: #f5efe3;
}

.differentials .section-header h2 {
    color: #f5efe3;
}

.differentials .section-header p {
    color: #cbb89e;
}

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

.differential-card {
    background: #37281c;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #4a3423;
}

.differential-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #b8955a;
    margin-bottom: 1rem;
}

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

.differential-card p {
    color: #cbb89e;
    text-transform: none;
    letter-spacing: normal;
}

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

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

.benefit-card {
    background: #f0e6d4;
    color: #2a1d14;
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s;
    border-bottom: 3px solid #b8955a;
}

.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: #4a3423;
}

.benefit-card p {
    text-transform: none;
    letter-spacing: normal;
}

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

.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: 4px;
    box-shadow: 0 5px 20px rgba(42, 29, 20, 0.2);
    height: 300px;
    border: 2px solid #b8955a;
}

.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: #faf7f0;
}

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

.testimonial-card {
    background: #f0e6d4;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(42, 29, 20, 0.1);
    border-left: 3px solid #b8955a;
}

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

.testimonial-author {
    font-weight: 600;
    color: #2a1d14;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a120c 0%, #2a1d14 55%, #4a3423 100%);
    color: #f5efe3;
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid #b8955a;
    border-bottom: 1px solid #b8955a;
}

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

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-transform: none;
    letter-spacing: normal;
}

/* Footer */
footer {
    background: linear-gradient(160deg, #1a120c 0%, #2a1d14 100%);
    color: #f5efe3;
    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: #d4b782;
}

.footer-section p,
.footer-section a {
    color: #cbb89e;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: normal;
}

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

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

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

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

.credits {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(184, 149, 90, 0.25);
    color: #9c8770;
}

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

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

/* ===================== 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, #1a120c 0%, #2a1d14 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.2rem;
        transition: right 0.35s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.45);
        border-left: 1px solid #b8955a;
    }

    .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;
}