/* --- Reset Básico e Estilos Globais --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            color: #000;
            background-color: #ffffff;
        }

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

        h1, h2, h3 {
            color: #000;
        }

        p {
            color: #666;
            line-height: 1.6;
        }

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

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

        /* --- Header / Cabeçalho --- */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background-color: #fff;
        }

        .header .logo {
            font-weight: 700;
            font-size: 24px;
        }
        
        .header .logo img {
            width: 120px; /* Ajuste o tamanho do seu logo */
        }

        .header nav a {
            margin: 0 15px;
            font-weight: 500;
            color: #000 !important;
            transition: color 0.3s ease;
        }

        .header nav a:hover {
            color: #c77b5a;
        }

        .header .login-btn {
            border: 1px solid #c77b5a;
            padding: 8px 25px;
            border-radius: 20px;
            color: #c77b5a;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .header .login-btn:hover {
            background-color: #c77b5a;
            color: #fff;
        }

        /* --- Seção Hero --- */
        .hero {
            display: flex;
            align-items: center;
            background-color: #ffffff;
            padding: 0 40px;
            min-height: 80vh;
        }

        .hero-text {
            flex: 1;
            background-color: #c77b5a;
            color: #fff;
            padding: 80px 60px;
            height: 500px;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            left: 50px;
            z-index: 2;
        }

        .hero-text h1 {
            font-size: 3rem;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-text p {
            color: #f0e2db;
            font-size: 1rem;
        }

        .hero-image {
            flex: 1.2;
            height: 500px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            right: 50px;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* --- Seção de Serviços --- */
        .services {
            text-align: center;
            padding: 80px 20px;
        }

        .services h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .services > p {
            max-width: 600px;
            margin: 0 auto 50px auto;
        }

        .service-cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .service-card {
            width: 250px;
            height: 350px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
            z-index: 1;
        }
        
        .service-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-card-content {
            position: relative;
            z-index: 2;
            color: #fff;
            text-align: center;
        }

        .service-card h3 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .service-card p {
            color: #fff;
            font-size: 0.9rem;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .service-btn {
            display: inline-block;
            padding: 10px 20px;
            border: 2px solid #fff;
            background-color: transparent;
            color: #fff;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .service-btn:hover {
            background-color: #fff;
            color: #000;
        }
        
        /* --- Seção "Por que escolher" --- */
        .why-us {
            background-color: #ffffff;
            text-align: center;
            padding: 80px 20px;
        }

        .why-us h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #000;
        }

        .section-description {
            max-width: 600px;
            margin: 0 auto 50px auto;
            color: #666;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .centered-cards-wrapper {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 680px;
            margin: 0 auto;
            margin-top: 30px;
        }

        .feature-card {
            background-color: #fff;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .feature-icon img {
            width: 60px;
            height: 60px;
            object-fit: contain;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #000;
            font-weight: 600;
        }

        .feature-card p {
            color: #666;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        /* --- Seção Portfólio --- */
        .portfolio {
            text-align: center;
            padding: 80px 20px;
        }

        .portfolio h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .portfolio > p {
            max-width: 600px;
            margin: 0 auto 30px auto;
        }


        .portfolio-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .portfolio-gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
        }        
        /* --- Responsividade --- */
        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                height: auto;
                padding: 40px 20px;
            }
            .hero-text {
                position: static;
                width: 100%;
                margin-bottom: 20px;
            }
            .hero-image {
                position: static;
                width: 100%;
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .centered-cards-wrapper {
                grid-template-columns: repeat(2, 1fr);
                max-width: 100%;
            }
            .portfolio-gallery {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 20px;
            }
            
            .header {
                flex-direction: column;
                gap: 15px;
            }
            
            /* Hero mobile - mesmo layout do desktop */
            .hero {
                display: flex;
                flex-direction: column;
                align-items: center;
                background-color: #ffffff;
                padding: 40px 20px;
                min-height: auto;
            }
            
            .hero-text {
                background-color: #c77b5a;
                color: #fff;
                padding: 40px 30px;
                border-radius: 15px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                text-align: center;
                width: 100%;
                max-width: 500px;
                margin-bottom: 20px;
            }
            
            .hero-text h1 {
                font-size: 2.2rem;
                color: #fff;
                line-height: 1.2;
                margin-bottom: 20px;
            }
            
            .hero-text p {
                color: #f0e2db;
                font-size: 1rem;
            }
            
            .hero-image {
                width: 100%;
                max-width: 500px;
                height: 300px;
                border-radius: 15px;
                overflow: hidden;
            }
            
            .hero-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            
            .service-cards {
                flex-direction: column;
                align-items: center;
            }
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .centered-cards-wrapper {
                grid-template-columns: 1fr;
                max-width: 100%;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-socials {
                margin-top: 20px;
            }
        }