
        /* ============================================ */
        /* RESET E ESTILOS BASE                        */
        /* ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ============================================ */
        /* VARIÁVEIS CSS                               */
        /* ============================================ */
        :root {
            /* Cores HAUSS */
            --color-primary: #000000;
            --color-secondary: #e8e0d6;
            --color-tertiary: #d4c4b0;
            --color-white: #ffffff;
            --color-gray-light: #f8f6f3;
            --color-gray-medium: #a0a0a0;
            --color-gray-dark: #333333;

            /* Tipografia */
            --font-primary: "Playfair Display", serif;
            --font-secondary: "Inter", sans-serif;

            /* Espaçamentos */
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 1.5rem;
            --spacing-lg: 2rem;
            --spacing-xl: 3rem;
            --spacing-xxl: 4rem;

            /* Transições */
            --transition: all 0.3s ease;
        }

        /* ============================================ */
        /* ESTILOS GLOBAIS                             */
        /* ============================================ */
        body {
            font-family: var(--font-secondary);
            line-height: 1.6;
            color: var(--color-primary);
            background-color: var(--color-white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        /* ============================================ */
        /* HEADER / NAVEGAÇÃO                          */
        /* ============================================ */
        .header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0) !important;
            z-index: 999;
            transition: background 0.3s ease, backdrop-filter 0.3s ease;
        }

        .header:hover {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo-text {
            font-family: var(--font-primary);
            font-size: 2rem;
            font-weight: 400;
            font-style: italic;
            color: var(--color-primary);
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: var(--spacing-lg);
        }

        .nav-link {
            text-decoration: none;
            color: var(--color-primary);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-link:hover {
            color: var(--color-gray-medium);
        }

        .nav-link::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--color-primary);
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Botão Hambúrguer (Mobile) */
        .nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            position: relative;
            z-index: 1001;
        }

        .nav-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--color-primary);
            margin: 3px 0;
            transition: var(--transition);
        }

        /* ============================================ */
        /* SEÇÃO HERO                                  */
        /* ============================================ */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-tertiary) 100%);
            background-image: url("../images/bg-hero.jpg");
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
        }

        .hero-background::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.1);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--color-primary);
        }

        .hero-title {
            font-family: var(--font-primary);
            font-size: 4rem;
            font-weight: 400;
            font-style: italic;
            margin-bottom: var(--spacing-md);
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.5s;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            font-weight: 300;
            margin-bottom: var(--spacing-xl);
            opacity: 0;
            animation: fadeInUp 1s ease forwards 0.8s;
        }

        .hero-cta {
            display: inline-block;
            padding: var(--spacing-md) var(--spacing-xl);
            background-color: var(--color-primary);
            color: var(--color-white);
            text-decoration: none;
            font-weight: 500;
            border-radius: 50px;
            transition: var(--transition);
            opacity: 0;
            animation: fadeInUp 1s ease forwards 1.1s;
        }

        .hero-cta:hover {
            background-color: var(--color-gray-dark);
            transform: translateY(-2px);
        }

        /* ============================================ */
        /* TÍTULOS DE SEÇÃO                            */
        /* ============================================ */
        .section-title {
            font-family: var(--font-primary);
            font-size: 2.5rem;
            font-weight: 400;
            text-align: center;
            margin-bottom: var(--spacing-lg);
            color: var(--color-primary);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--color-gray-medium);
            margin-bottom: var(--spacing-xl);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ============================================ */
        /* SEÇÃO SOBRE                                 */
        /* ============================================ */
        .about {
            padding: var(--spacing-xxl) 0;
            background-color: var(--color-gray-light);
        }

        .about-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-xxl);
            align-items: center;
        }

        .about-description {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: var(--spacing-lg);
            color: var(--color-gray-dark);
        }

        .about-img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* ============================================ */
        /* SEÇÃO PRODUTOS                              */
        /* ============================================ */
        .products-section {
            padding: 0;
            margin-bottom: 4rem;
            background-color: var(--color-white);
        }

        .products-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            min-height: 100vh;
        }

        .product-showcase-card {
            position: relative;
            min-height: 675px;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
        }

        /* Imagem do Card */
        .product-showcase-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .product-showcase-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .product-showcase-card:hover .product-showcase-image img {
            transform: scale(1.05);
        }

        /* Overlay Gradient */
        .product-showcase-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 300px;
            background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.85));
            z-index: 2;
            pointer-events: none;
        }

        /* Conteúdo do Card */
        .product-showcase-content {
            position: relative;
            z-index: 3;
            padding: 48px;
            color: var(--color-white);
            max-width: 540px;
        }

        .product-showcase-title {
            font-size: clamp(24px, 3.5vw, 36px);
            font-weight: 400;
            line-height: 1.2;
            margin: 0 0 16px 0;
            letter-spacing: -0.02em;
        }

        .product-showcase-description {
            font-size: 16px;
            line-height: 1.6;
            margin: 0 0 24px 0;
            opacity: 0.95;
        }

        .product-showcase-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background-color: transparent;
            border: 1px solid var(--color-white);
            color: var(--color-white);
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: all 0.3s ease;
            cursor: pointer;
            border-radius: 50px;
        }

        .product-showcase-cta:hover {
            background-color: var(--color-white);
            color: #000;
        }

        .product-showcase-cta svg {
            transition: transform 0.3s ease;
        }

        .product-showcase-cta:hover svg {
            transform: translateX(4px);
        }

        /* Background e Overlay Adicionais */
        .product-showcase-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.4s ease;
        }

        .product-showcase-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
            z-index: 1;
        }

        .product-showcase-card:hover .product-showcase-background {
            transform: scale(1.05);
        }

        /* ============================================ */
        /* SEÇÃO PROMOÇÃO                              */
        /* ============================================ */
        .promo-section {
            background-color: var(--color-gray-light);
            margin-bottom: var(--spacing-xxl);
        }

        .promo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
        }

        .promo-content-wrapper {
            display: block;
        }

        .promo-content {
            padding: var(--spacing-xxl) 0;
            max-width: 480px;
        }

        .promo-title {
            font-family: var(--font-secondary);
            font-size: 2rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: var(--spacing-md);
            color: var(--color-primary);
        }

        .promo-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--color-gray-dark);
            margin-bottom: var(--spacing-xl);
        }

        .promo-cta {
            display: inline-block;
            padding: var(--spacing-md) var(--spacing-xxl);
            background-color: var(--color-primary);
            color: var(--color-white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 8px;
            transition: var(--transition);
            text-transform: uppercase;
        }

        .promo-cta:hover {
            background-color: var(--color-gray-dark);
            transform: translateY(-2px);
        }

        .promo-image {
            height: 100%;
        }

        .promo-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ============================================ */
        /* SEÇÃO DICAS                                 */
        /* ============================================ */
        .tips {
            padding: var(--spacing-xxl) 0;
            background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-tertiary) 100%);
        }

        .tips-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

        .tips-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-xxl);
            align-items: center;
        }

        .tips-description {
            font-size: 1.2rem;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: var(--spacing-lg);
            color: var(--color-gray-dark);
        }

        .tips-author {
            font-weight: 600;
            color: var(--color-primary);
        }

        .tips-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
        }

        /* ============================================ */
        /* SEÇÃO DEPOIMENTOS                           */
        /* ============================================ */
        .testimonials {
            padding: var(--spacing-xxl) 0;
            background-color: var(--color-gray-light);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-lg);
            margin-top: var(--spacing-xl);
            align-items: stretch;
        }

        .testimonial-card {
            background: var(--color-white);
            padding: var(--spacing-xl);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .testimonial-content {
            display: flex;
            flex-direction: column;
            height: 100%;
            justify-content: space-between;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: var(--spacing-lg);
            color: var(--color-gray-dark);
        }

        .testimonial-author {
            color: var(--color-primary);
            font-weight: 600;
        }

        /* ============================================ */
        /* SEÇÃO CONTATO                               */
        /* ============================================ */
        .contact {
            padding: var(--spacing-xxl) 0;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-xxl);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            text-align: left;
        }

        .contact-description {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: var(--spacing-xl);
            color: var(--color-gray-dark);
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-md);
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-xs);
        }

        .contact-item a {
            color: var(--color-primary);
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-item a:hover {
            color: var(--color-gray-medium);
        }

        /* ============================================ */
        /* FORMULÁRIO                                  */
        /* ============================================ */
        .form {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-lg);
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-input,
        .form-textarea {
            padding: var(--spacing-md);
            border: 2px solid var(--color-secondary);
            border-radius: 8px;
            font-family: var(--font-secondary);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--color-primary);
        }

        .form-submit {
            padding: var(--spacing-md) var(--spacing-xl);
            background-color: var(--color-primary);
            color: var(--color-white);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .form-submit:hover {
            background-color: var(--color-gray-dark);
            transform: translateY(-2px);
        }

        /* ============================================ */
        /* FOOTER                                      */
        /* ============================================ */
        .footer {
            background-color: var(--color-primary);
            color: var(--color-white);
            padding: var(--spacing-xxl) 0 var(--spacing-lg);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-xxl);
            margin-bottom: var(--spacing-xl);
        }

        .footer-logo {
            font-family: var(--font-primary);
            font-size: 2rem;
            font-style: italic;
            margin-bottom: var(--spacing-sm);
        }

        .footer-tagline {
            color: var(--color-secondary);
            font-size: 1.1rem;
        }

        .footer-links {
            display: flex;
            justify-content: space-between;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: var(--spacing-md);
        }

        .footer-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: var(--spacing-sm);
        }

        .footer-list a {
            color: var(--color-secondary);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-list a:hover {
            color: var(--color-white);
        }

        .footer-bottom {
            text-align: center;
            margin-top: var(--spacing-xl);
            padding-top: var(--spacing-lg);
            border-top: 1px solid var(--color-gray-dark);
        }

        /* ============================================ */
        /* ANIMAÇÕES                                   */
        /* ============================================ */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============================================ */
        /* RESPONSIVIDADE - TABLETS                    */
        /* ============================================ */
        @media (max-width: 1023px) {
            .products-grid {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .product-showcase-card {
                min-height: 500px;
            }
        }

        @media (max-width: 992px) {
            /* Seções com Grid 2 Colunas */
            .about-content,
            .tips-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .about-image {
                order: -1;
            }

            /* Produtos */
            .products-grid {
                grid-template-columns: 1fr;
                align-items: stretch;
            }

            .product-showcase-card {
                height: 500px;
            }

            /* Promoção */
            .promo-grid {
                grid-template-columns: 1fr;
            }

            .promo-content {
                padding: var(--spacing-xl);
                text-align: center;
                margin: 0 auto;
            }

            .promo-description {
                margin-left: auto;
                margin-right: auto;
            }

            .promo-image {
                order: -1;
            }
        }

        /* ============================================ */
        /* RESPONSIVIDADE - MOBILE                     */
        /* ============================================ */
        @media (max-width: 768px) {
            /* Navegação Mobile */
            .nav-menu {
                display: none;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding: var(--spacing-xl) 0;
                text-align: center;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transition: left 0.3s ease;
                z-index: 1000;
                display: flex;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-toggle {
                display: flex !important;
            }

            /* Hero Mobile */
            .hero-title {
                font-size: 3rem;
            }

            /* Footer Mobile */
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
                gap: var(--spacing-xl);
            }
        }

        @media (max-width: 767px) {
            .product-showcase-card {
                min-height: 427px;
            }

            .product-showcase-content {
                padding: 32px 24px;
            }
        }