

body, html {
            height: 100%;
            margin: 0;
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        /* Configuração do Fundo */
        .hero-section {
            /* Substitua pela URL da imagem de fundo da rua que geramos */
            background-image: url(../imagens/fundo.jpg);
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
        }

        /* Overlay escuro sutil para garantir leitura do texto caso o fundo seja claro demais */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
            z-index: 1;
        }

        .content-wrapper {
            position: relative;
            z-index: 2; /* Garante que o texto fique acima do overlay */
            width: 100%;
        }

        /* Tipografia */
        h1.main-title {
            font-family: 'Playfair Display', serif;
            color: #E5C674; /* Cor Dourada similar à imagem */
            font-size: 6rem;
            line-height: 1.1;
            margin-bottom: 20px;
            font-weight: 500;
        }

        p.subtitle {
            color: #f8f9fa;
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 30px;
            max-width: 500px;
        }

        /* Botão do WhatsApp */
        .btn-whatsapp {
            background-color: #2b8547;
            color: white;
            font-size: 24px;
            font-weight: 600;
            padding: 20px 30px;
            border-radius: 50px;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
        }

        .btn-whatsapp:hover {
            background-color: #1ebc57;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
            color: white;
        }

        /* Imagem da Modelo (PNG Transparente) */
        .model-img {
            max-height: 90vh;
            width: auto;
            display: block;
            margin-left: auto;
            /* Filtro sutil para integrar a modelo ao ambiente noturno */
            filter: brightness(0.9); 
        }



        /* Ajustes Mobile */
        @media (max-width: 991px) {
            .hero-section {
            	background-image: url(../imagens/fundo-mobile.jpg);
                background-position: center center;
                align-items: flex-start; /* Alinha topo no mobile */
                padding-top: 60px;
                display: flex;
                align-items: center;
                align-content: center;
            }
            
            .hero-overlay {
                background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
            }

            h1.main-title {
                font-size: 2.8rem; /* Fonte menor no mobile */
                text-align: left;
            }

            p.subtitle {
                text-align: left;
                font-size: 20px;
                margin: 0 auto 30px auto;
            }

            .btn-whatsapp{
            	font-size: 16px;
            	display: inline-block;
            	border-radius: 8px;
            	padding: 12px;
            }

            .btn-container {
      
            }

            .model-col {
                display: flex;
                justify-content: center;
                margin-top: 30px;
            }

            .model-img {
                max-height: 60vh; /* Modelo menor no mobile */
            }
        }

