
        /* --- 1. VARIÁVEIS E RESET (A Base do Design) --- */
        :root {
            --azul-brand: #004aad;
            --azul-escuro: #002d6b;
            --vermelho-brand: #e63946;
            --cinza-fundo: #f8f9fa;
            --texto-principal: #333333;
            --texto-suave: #666666;
            --branco: #ffffff;
            --sombra-premium: 0 10px 30px rgba(0,0,0,0.08);
            --borda-suave: 1px solid rgba(0,0,0,0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--cinza-fundo);
            color: var(--texto-principal);
            line-height: 1.6;
        }

        a { text-decoration: none; }
        ul { list-style: none; }

        /* --- 2. HEADER MODERNO --- */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            height: 80px;
            display: flex;
            align-items: center;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }

        /* --- ESTILOS DO LOGO E TEXTO (NOVO) --- */
        
        /* Container que segura a imagem e o texto juntos */
        .brand-container {
            display: flex;
            align-items: center;
            gap: 12px; /* Espaço entre a imagem da logo e o texto */
        }

        .logo {
            height: 68px; /* Ajustado para equilibrar com o texto */
            width: auto;
            object-fit: contain;
            border-radius: 20px;
        }

        /* Bloco que empilha o nome e o slogan */
        .brand-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Estilo do nome "Decora Company" */
        .brand-name {
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--azul-escuro);
            line-height: 1.1;
            letter-spacing: -0.5px;
        }

        /* Estilo do slogan "Acabamentos de Alto Padrão" */
        .brand-slogan {
            font-size: 0.8rem;
            color: var(--azul-brand);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Ajuste para telas menores (celulares) */
        @media (max-width: 480px) {
            .logo { height: 50px; }
            .brand-name { font-size: 1rem; }
            .brand-slogan { font-size: 0.7rem; }
        }
        /* --- FIM DOS ESTILOS DO LOGO --- */

        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links a {
            color: var(--texto-principal);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--azul-brand);
        }

        .btn-orcamento {
            background-color: var(--azul-brand);
            color: var(--branco) !important;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0, 74, 173, 0.3);
            transition: transform 0.3s, background-color 0.3s;
        }

        .btn-orcamento:hover {
            background-color: var(--azul-escuro);
            transform: translateY(-2px);
        }

        /* --- 3. HERO SECTION (Impacto) --- */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, rgba(0,20,50,0.9), rgba(0,74,173,0.7)), url(https://i.pinimg.com/736x/e2/71/c3/e271c3d5e91204c5645ef4dafc2f6be5.jpg);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--branco);
            padding: 0 20px;
            margin-top: 0;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-content p {
            font-size: 1.2rem;
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto 2.5rem auto;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--vermelho-brand);
            color: white;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 50px;
            transition: 0.3s;
            box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
        }

        .cta-button:hover {
            background-color: #c92a37;
            transform: scale(1.05);
        }

        /* --- 4. SERVIÇOS (Cards Premium) --- */
        .section-padding { padding: 6rem 5%; }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            color: var(--azul-brand);
            font-size: 2.2rem;
            margin-bottom: 10px;
        }
        
        .section-title p { color: var(--texto-suave); }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .card {
            background: var(--branco);
            padding: 2.5rem;
            border-radius: 20px;
            border: var(--borda-suave);
            box-shadow: var(--sombra-premium);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }

        .card h3 {
            color: var(--azul-escuro);
            font-size: 1.3rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .card p {
            color: var(--texto-suave);
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--azul-brand);
            opacity: 0.5;
            transition: 0.3s;
        }

        .card:hover::before { opacity: 1; width: 6px; }

        /* --- 5. GALERIA --- */
        .galeria-bg { background-color: var(--branco); }

        .galeria-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .midia-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--sombra-premium);
            transition: transform 0.3s;
            background: #000;
        }

        .midia-item:hover { transform: scale(1.02); }

        .midia-item video, .midia-item img { 
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        /* Classe para ativar o cursor de clique nas imagens */
        .img-galeria {
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .img-galeria:hover {
            opacity: 0.8;
        }

        .midia-info {
            background: white;
            padding: 15px;
            text-align: center;
        }

        .midia-info h3 {
            font-size: 1rem;
            color: var(--texto-principal);
        }

        .divisor-secao {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 3rem 0;
            color: var(--azul-brand);
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
        }
        
        .divisor-secao::before, .divisor-secao::after {
            content: "";
            height: 1px;
            width: 50px;
            background: var(--azul-brand);
            margin: 0 15px;
            opacity: 0.5;
        }

        /* --- 6. FOOTER --- */
        footer {
            background-color: var(--azul-escuro);
            color: white;
            padding: 4rem 5% 2rem;
            text-align: center;
        }

        .footer-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--branco);
        }

        .footer-info p {
            margin-bottom: 15px;
            color: rgba(255,255,255,0.8);
            font-size: 1rem;
        }

        /* Destaque para e-mail e telefone */
        .footer-info a {
            color: #fff;
            font-weight: 600;
            font-size: 1.15rem;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
            padding: 8px 18px;
            border-radius: 30px;
            border: 1px solid rgba(255,255,255,0.3);
            display: inline-block;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-info a:hover {
            background: rgba(255,255,255,0.25);
            border-color: rgba(255,255,255,0.5);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .btn-whatsapp-footer {
            display: inline-flex;
            align-items: center;
            background-color: #25D366;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: bold;
            margin-top: 2rem;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .btn-whatsapp-footer:hover {
            background-color: #20bd5a;
            transform: translateY(-3px);
        }

        .copyright {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.8rem;
            color: rgba(255,255,255,0.5);
        }

        /* Link do desenvolvedor */
        .link-dev {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        .link-dev:hover {
            color: #fff;
            border-bottom-color: #fff;
        }

        /* --- RESPONSIVO --- */
        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2.2rem; }
            .nav-links { display: none; }
            .navbar { justify-content: center; }
            .section-padding { padding: 4rem 5%; }
        }

        /* --- CSS DO MODAL --- */
        .modal {
            display: none; 
            position: fixed; 
            z-index: 2000; 
            padding-top: 50px; 
            left: 0;
            top: 0;
            width: 100%; 
            height: 100%; 
            overflow: auto; 
            background-color: rgba(0,0,0,0.9); 
        }

        .modal-conteudo {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 800px;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 5px;
            box-shadow: 0 0 20px rgba(255,255,255,0.1);
            animation: zoom 0.6s;
        }

        @keyframes zoom {
            from {transform:scale(0)} 
            to {transform:scale(1)}
        }

        .fechar {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
            z-index: 2001;
        }

        .fechar:hover, .fechar:focus {
            color: #bbb;
            text-decoration: none;
            cursor: pointer;
        }

        #legenda {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 700px;
            text-align: center;
            color: #ccc;
            padding: 10px 0;
            height: 150px;
        }

        @media only screen and (max-width: 700px){
            .modal-conteudo { width: 100%; }
        }
    