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

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

        img {
            max-width: 100%;
        }

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

        /* Header */
        header {
            background: linear-gradient(135deg, #c40101 0%, #aa1515 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(74,4,4,0.10);
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #d4af37;
        }

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

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

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

        /* 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: #ffffff;
            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(43,2,2,0.55), rgba(43,2,2,0.55)), 
                        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: white;
            margin-top: 60px;
        }

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


        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
        }

    

        .highlight {
            color: #d4af37;
        }

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

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

        .cta-button {
            background: #d4af37;
            color: #4a0404;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
        }

        .cta-button:hover {
            background: #f0c950;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
        }

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

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

        .about-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(74,4,4,0.10);
            margin: 0 auto;
        }

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

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

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

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

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

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

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

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(74,4,4,0.10);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(74,4,4,0.15);
        }

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

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

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

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

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

        .differential-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(74,4,4,0.10);
        }

        .differential-number {
            font-size: 2rem;
            font-weight: bold;
            color: #d4af37;
            margin-bottom: 1rem;
        }

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

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

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

        .benefit-card {
            background: #f7e8e4;
            color: #4a0404;
            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: #d4af37;
        }

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

        .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(74,4,4,0.10);
            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;
        }

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

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(74,4,4,0.10);
        }

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

        .testimonial-author {
            font-weight: bold;
            color: #4a0404;
        }

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

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #4a0404 0%, #8b0000 55%, #c40101 100%);
            color: white;
            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, #2b0202 0%, #4a0404 100%);
            color: white;
            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: #d4af37;
        }

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

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

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

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

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

        .credits {
            text-align: center;
            padding: 2rem 0;
            border-top: 1px solid #5c2626;
            color: #b08a83;
        }

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

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

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