/* css/style.css */

/* Definição de Cores Padrão */
:root {
    --QueMeMove01: #6ec4b9;
    --QueMeMove01-rgba: rgba(110, 196, 185, 0.80);
    --QueMeMove02: #d685a3;
    --QueMeMove03: #7bb5c9;
    --QueMeMove03-rgba: rgba(123, 181, 201, 0.6);
    --Fundo01: #FFFFF8;
    --azul-primario: #007bff;
    --azul-secundario: #0056b3;
    --cinza-texto: #555;
    --cinza-claro: #f4f4f4;
    --cinza-medio: #e0e0e0;
    --cor-erro: #e74c3c;
    --cor-sucesso: #28a745;
    --QueMeMove-cinza: #d7d7d7;
}

/* 1. Reset Básico & Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

body.noscroll {
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

a {
    color: var(--azul-primario);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--azul-secundario);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: #222;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.8em;
    color: var(--QueMeMove01);
}

p {
    margin-bottom: 15px;
}

.text-center {
    text-align: center;
}

/* ÚNICA CLASSE DE BOTÃO */
.btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--QueMeMove01);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    width: 200px;
}

.btn-small:hover {
    background: var(--QueMeMove02);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Estilo para a Linha Superior (Top Bar) */
.top-bar {
    background-color: var(--QueMeMove01);
    color: #fff;
    padding: 4px 0;
    font-size: 0.8em; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    font-weight: bold;
}

.top-bar .container {
    display: grid;
    grid-template-columns: auto 1fr; 
    align-items: center;
    gap: 20px;
}

.top-bar-left {
    justify-self: start;
    white-space: nowrap; 
}

.top-bar-address {
    justify-self: end;
    white-space: nowrap;
    text-align: right;
}

.top-bar-address i {
    margin-right: 5px;
}

.social-icons-top-bar {
    display: none;
}


/* 2. Cabeçalho (Header) */
.main-header {
    background: var(--Fundo01);
    height: 70px;
    padding: 0;
    border-bottom: 1px solid #ddd;
    box-shadow: inset 0px -1.5px 3.5px 0 rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.main-header .logo img {
    height: 69px;
    width: auto;
    object-fit: contain;
    object-position: center;
    margin-top: 0px;
    vertical-align: middle;
}

.header-info-col {
    color: var(--cinza-texto);
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.header-info-col p {
    margin: 0;
}

.header-info-text {
    color: var(--QueMeMove01);
    font-weight: bold;
    text-align: left;
    line-height: 1.2;
    font-size: 1em;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-social-icons {
    display: none;
}

.main-nav ul {
    display: flex;
    white-space: nowrap;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    display: inline-block; 
    color: var(--QueMeMove01);
    font-weight: bold;
    font-size: 1.0em;
    padding: 5px 0;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--QueMeMove03);
    transform: translateY(-6px);
}

.social-icons-header {
    display: flex;
    gap: 8px;
    margin-left: 20px;
}

.social-icons-header a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 28px;
    background-color: var(--QueMeMove01);
    color: #fff;
    font-size: 1.0em;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons-header a:hover {
    background-color: var(--QueMeMove03);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.hamburger-menu {
    display: none;
}


/* 3. Seção do Carrossel (Hero Section) */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: var(--cinza-medio);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-carousel .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
}

.hero-carousel .carousel-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 5s ease-out;
}

.hero-carousel .carousel-item.active {
    opacity: 1;
}

.hero-carousel .carousel-item.active .carousel-background {
    transform: scale(1.1);
}

.hero-carousel .overlay-text {
    position: absolute;
    z-index: 10;
    top: 0%;
    left: 0;
    transform: none;
    width: 50%;
    max-width: 45%;
    text-align: left;
    height: 100%;
    padding: 5px 5px 5px 10%;
    background-color: var(--QueMeMove03-rgba);
    border-radius: 0 8px 8px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-carousel .overlay-text h2 {
    color: var(--QueMeMove02);
    background-color: rgba(255, 255, 255, 0.668);
    font-size: 1.5em;
    margin: 0 200px 30px 15px;
    line-height: 1.1;
    text-align: center;
    text-shadow: 1px 1px 3px rgb(255, 255, 255);
    padding: 5px 5px;
    border-radius: 8px;
    display: inline-block;
    max-width: 100%;
}

.hero-carousel .overlay-text h3 {
    color: #eee;
    font-size: 2.5em;
    margin: 0 15px 15px 15px;
    font-weight: normal;
    text-shadow: 1.5px 1.5px 3px rgb(0, 0, 0);
    line-height: 1.1;
}

.hero-carousel .overlay-text p {
    font-size: 1.2em;
    margin: 0 20px 25px 30px;
    text-shadow: 1.5px 1.5px 3px rgb(0, 0, 0);
    line-height: 1.1;
    text-align: justify;
}

.hero-carousel .btn-small {
    display: none;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

.carousel-indicators .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-indicators .dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

.carousel-indicators .dot:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.8);
}


/* 4. Seções Gerais */
section {
    padding: 60px 0;
}

.section-raised {
    background-color: #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 5;
}

/* --- Seção Conheça a Fabricia (ATUALIZADA) --- */
.about-fabrici-section {
    background-color: var(--Fundo01);
    padding-top: 20px;
    padding-bottom: 30px; 
}

#fabrici {
    scroll-margin-top: 90px;
}

#destaques {
    scroll-margin-top: 30px;
}

.about-fabrici-section::before {
    content: '';
    display: block;
    width: 80%;
    height: 15px;
    margin-left: auto;
    margin-right: auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 15'%3E%3Cpath d='M0 10 Q 25 0, 50 10 T 100 10' stroke='%23d685a3' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-size: 100px 15px;
    background-repeat: repeat-x;
    background-position: center;
    margin-bottom: 40px; 
}

.about-fabrici-section::after {
    display: none;
}

.about-fabrici-content {
    display: flex;
    align-items: stretch; 
    gap: 50px;
}

.about-fabrici-image {
    flex: 0 0 400px;
    display: flex;
}

.about-fabrici-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-fabrici-text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column; 
}

.about-fabrici-title h2 {
    text-align: center; 
    color: var(--QueMeMove02);
    margin-top: 0;
    margin-bottom: 20px;
}

.about-fabrici-text {
    flex-grow: 1; 
}

.about-fabrici-text p {
    font-size: 1.1em;
    color: var(--cinza-texto);
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: justify;
}

/* Seção Destaques (Agora "Meu Trabalho") */
.highlights-section {
    background-color: var(--Fundo01);
    padding: 60px 0;
}

.highlights-section::before {
    content: '';
    display: block;
    width: 80%;
    height: 15px;
    margin-left: auto;
    margin-right: auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 15'%3E%3Cpath d='M0 10 Q 25 0, 50 10 T 100 10' stroke='%23d685a3' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-size: 100px 15px;
    background-repeat: repeat-x;
    background-position: center;
    margin-bottom: 20px; 
}

section h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    color: var(--QueMeMove01);
    text-shadow: 2px 2px 4px rgb(255, 255, 255);
    margin-top: 0px;
}

.highlights-section h2 {
    color: var(--QueMeMove02); 
    padding-top: 10px;
    text-shadow: none;
}

section h2::after {
    display: none;
}

/* 6. Seção de Destaques (Highlights) */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30px;
    border-radius: 15px;
    background-color: var(--QueMeMove01-rgba);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .highlight-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.highlight-item {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 400px;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.highlight-image-line {
    position: relative;
    width: 100%;
    height: 40%;
    overflow: hidden;
    flex-shrink: 0;
}

.highlight-image-line img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.highlight-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    color: #fff;
    font-size: 1.3em;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    margin: 0;
    z-index: 2;
    font-weight: bold;
}

.highlight-text-line {
    height: 60%;
    flex-grow: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    text-align: justify;
    background-color: var(--cinza-claro);
    overflow-y: auto;
}

.highlight-text-line p {
    font-size: 0.9em;
    margin-bottom: 0;
    margin-top: -5px;
    color: var(--cinza-texto);
    /*font-style: italic;*/
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.highlight-button-line {
    height: 0%; 
    display: none;
}

/* 9. Rodapé (Footer) */
.main-footer {
    background: var(--QueMeMove01);
    color: #bbb;
    padding: 5px 0;
    font-size: 0.9em;
    box-shadow: inset 0 8px 15px -5px rgba(0, 0, 0, 0.6);
}

.main-footer .footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.main-footer .footer-col {
    flex: 1;
    min-width: 250px;
}

.main-footer .footer-col.about {
    text-align: center;
}

.footer-col.links,
.footer-col.contact {
    margin-top: 30px;
}

.main-footer .footer-col h3 {
    color: #fff;
    margin-bottom: 10px; 
    font-size: 1.2em;
}

.main-footer .footer-col ul {
    padding-left: 0;
}

.main-footer .footer-col ul li {
    margin-bottom: 2px;
}

.main-footer .footer-col ul li a {
    color: #fff;
}

.main-footer .footer-col ul li a:hover {
    color: var(--QueMeMove-cinza);
}

.main-footer .footer-col.contact p {
    margin-bottom: 0px;
    color: #fff;
}

.main-footer .footer-col.contact p.contact-info-line {
    margin-bottom: 10px;
}

.main-footer .footer-col.contact i {
    margin-right: 10px;
    color: #fff;
}

.main-footer .footer-col.contact a {
    color: #fff;
}

.main-footer .footer-col.contact a:hover {
    color: var(--QueMeMove-cinza);
}

.footer-address-block {
    margin-top: 0; 
}

.footer-address-block .address-line-1,
.footer-address-block .address-line-2 {
    line-height: 1.4;
}

.footer-address-block .address-line-2 {
    padding-left: 24px;
}

.footer-address-title {
    display: flex;
    align-items: center;
    margin-bottom: 0px !important;
}

.footer-address-info {
    padding-left: 24px;
    margin-bottom: 0 !important;
}

.main-footer .social-media a {
    color: #fff;
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.main-footer .social-media a:hover {
    color: var(--QueMeMove-cinza);
}

.main-footer .footer-logo {
    max-width: 150px;
    height: auto;
    margin-top: 40px;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #444;
    color: var(--QueMeMove-cinza);
}

/* 11. Estilos dos Botões Flutuantes */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 38px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF; 
}

.back-to-top {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 95px;
    right: 40px;
    background-color: var(--QueMeMove01);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--cinza-texto);
}


/* 12. Estilos do Lightbox de Vídeo */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.50);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    background: #000;
    width: 90%;
    max-width: 960px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay.visible .lightbox-container {
    transform: scale(1);
}

.video-content {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.lightbox-close {
    position: absolute;
    top: -35px;
    right: 0;
    font-size: 35px;
    font-weight: bold;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}


/* --- ESTILOS DA PÁGINA DE CONTATO --- */

.breadcrumb-section {
    padding: 2px 0;
    background-color: var(--cinza-claro);
    border-bottom: 1px solid var(--cinza-medio);
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 0.9em;
    font-style: italic;
}

.breadcrumb-item a {
    color: var(--azul-primario);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--cinza-texto);
    font-weight: bold;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    padding: 0 10px;
    color: var(--cinza-texto);
}

.static-hero-section {
    position: relative;
    height: 300px;
    background-image: url('../repositorio/img/ImgContato.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    padding: 0px;
}

.static-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.static-hero-overlay {
    position: relative;
    z-index: 2;
    background-color: var(--QueMeMove03-rgba);
    color: #fff;
    padding: 40px; 
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; 
    align-items: center; 
    border-radius: 0 15px 15px 0;
}

.static-hero-overlay h2 {
    color: #fff;
    font-size: 2.2em;
    margin-top: 10px;
    margin-bottom: 0px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    text-shadow: 1.5px 1.5px 3px rgb(0, 0, 0);
}

.hero-contact-logo {
    max-height: 120px;
    margin-bottom: 10px;
}

.static-hero-overlay p {
    font-size: 1.2em;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-shadow: 1.5px 1.5px 3px rgb(0, 0, 0);
}

.static-hero-overlay p i {
    margin-right: 10px;
}

.static-hero-overlay p a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.static-hero-overlay p a:hover {
    color: var(--QueMeMove-cinza);
}

.social-icons-contact-hero {
    margin-top: 0px;
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons-contact-hero a {
    color: #fff;
    font-size: 1.5em;
    transition: color 0.3s ease, transform 0.3s ease;
    text-shadow: 1.5px 1.5px 3px rgb(0, 0, 0);
}

.social-icons-contact-hero a:hover {
    color: var(--QueMeMove-cinza);
    transform: scale(1.1);
}

/* --- ESTILOS DA NOVA ESTRUTURA DE CONTATO --- */
.contact-page-section {
    padding: 20px 0;
    background-color: var(--Fundo01);
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 40px;
    align-items: start;
}

.contact-info-col {
    padding-top: 60px;
}

.info-box {
    background-color: var(--QueMeMove03);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-left: 30px;
    margin-right: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    height: 150px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-box:last-child {
    margin-bottom: 0;
}

.info-box-icon {
    flex-shrink: 0;
    width: 60px;
}

.info-box-icon img {
    max-width: 100%;
    height: auto;
    display: block;
}

.info-box-text {
    color: #fff;
    flex-grow: 1;
}

.info-box-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.2em;
    color: #fff;
    text-shadow: 1.5px 1.5px 3px rgb(0, 0, 0);
}

.info-box-text p {
    margin: 0;
    font-size: 1em;
    text-shadow: 1.5px 1.5px 3px rgb(0, 0, 0);
}

.info-box-text p a {
    color: #fff;
    text-decoration: none;
}
.info-box-text p a:hover {
    text-decoration: underline;
}

.address-block {
    margin-bottom: 15px;
}
.address-block:last-child {
    margin-bottom: 0;
}

.address-title {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
    color: #fff;
    text-shadow: 1.5px 1.5px 3px rgb(0, 0, 0);
}
.address-title img {
    width: 24px;
    margin-right: 10px;
}
.address-info {
    padding-left: 34px;
    color: #fff;
    text-shadow: 1.5px 1.5px 3px rgb(0, 0, 0);
}


.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #000; 
    font-size: 1.5em; 
    text-shadow: 1px 1px 2px #a0a0a0;
}

.contact-form-container {
    max-width: 800px; 
    margin: 10px 10px 10px 10px; 
    padding: 5px 50px 20px;
    border-radius: 10px;
    background-color: var(--QueMeMove03);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.contact-form-container h3 {
    font-size: 1.8em;
    color: #fff;
    margin-bottom: 10px; 
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    margin-bottom: 0px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--cinza-medio);
    border-radius: 5px;
    font-size: 1em;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--QueMeMove01);
    box-shadow: 0 0 5px rgba(31, 71, 133, 0.5);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group.error input,
.form-group.error textarea {
    border-color: var(--cor-erro);
}

.form-group .error-message {
    color: var(--cor-erro);
    font-size: 0.85em;
    margin-top: 5px;
}

#form-status-message {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    display: none;
}

#form-status-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-status-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* --- PAGINA EM CONSTRUÇÃO --- */
.construction-section {
    padding: 100px 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.construction-section h1 {
    font-size: 3em;
    color: var(--QueMeMove01);
    margin-bottom: 20px;
}

.construction-section p {
    font-size: 1.2em;
    color: var(--cinza-texto);
    margin-bottom: 30px;
}

/* 13. Responsividade - Media Queries */
@media (max-width: 991px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-col {
        padding-top: 0;
    }

    h1 { font-size: 2.2em; }
    
    .top-bar {
        padding: 1px 0;
    }
    
    .top-bar .container { 
        grid-template-columns: 1fr;
        text-align: center;
        gap: 5px;
        justify-content: center;
    }

    .top-bar-left, .top-bar-address { 
        display: none;
    }
    
    .social-icons-top-bar {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 0;
    }

    .social-icons-top-bar a {
        color: #fff;
        font-size: 1.3em; 
        transition: transform 0.2s ease;
    }

    .social-icons-top-bar a:hover {
        transform: scale(1.1);
    }
    
    /* --- INÍCIO DAS REGRAS DO CABEÇALHO RESPONSIVO --- */
    .main-header {
        height: auto;
        padding: 5px 0;
    }

    .main-header .container { 
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 10px;
    }
    
    .main-header .logo img {
        height: 50px;
    }

    .header-info-col {
        display: block;
        text-align: center;
        padding: 0 5px;
    }

    .header-info-text {
        font-size: 0.7em;
        line-height: 1.1;
    }

    .social-icons-header {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 24px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1010;
        position: relative;
    }

    .hamburger-line {
        width: 100%;
        height: 2px;
        background-color: var(--QueMeMove01);
        border-radius: 10px;
        transition: all 0.3s ease-in-out;
        transform-origin: center;
    }
    
    .hamburger-menu.active .hamburger-line {
        background-color: var(--QueMeMove02);
    }

    .hamburger-menu.active .hamburger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .hamburger-menu.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active .hamburger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    .main-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 248, 0.75);
        z-index: 1000;
        padding-top: 80px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        align-items: center;
        justify-content: flex-start;
    }
    
    .main-nav.mobile-visible {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .main-nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 20px 0;
        border-bottom: 1px solid var(--cinza-medio);
        font-size: 1.0em;
        color: var(--QueMeMove02);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }

    .main-nav ul li:first-child a {
        border-top: 1px solid var(--cinza-medio);
    }

    .nav-social-icons {
        display: flex;
        gap: 25px;
        margin-top: 30px; 
        padding: 0;
    }

    .nav-social-icons a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 32px;
        background-color: var(--QueMeMove02);
        color: #fff;
        font-size: 1.2em;
        border-radius: 50%;
    }
    /* --- FIM DAS REGRAS DO CABEÇALHO RESPONSIVO --- */

    /* --- INÍCIO DAS REGRAS DO HERO RESPONSIVO --- */
    .hero-carousel { 
        height: 350px; 
    }
    
    .hero-carousel .overlay-text {
        position: relative; /* Alterado de static */
        display: flex; /* Adicionado para centralizar */
        flex-direction: column;
        align-items: center;
        width: 90%; /* Largura alterada para 90% */
        max-width: 90%; /* Mantido para flexibilidade, mas 'width' tem prioridade */
        height: 100%; /* Altura alterada para 100% */
        text-align: center;
        padding: 20px;
        background-color: var(--QueMeMove03-rgba); /* Fundo re-adicionado */
        border-radius: 15px; /* Cantos arredondados */
    }

    .hero-carousel .overlay-text h2 {
        font-size: 1.2em;
        color: var(--QueMeMove02); /* Cor da fonte similar ao desktop */
        background-color: rgba(255, 255, 255, 0.668); /* Fundo da caixa similar ao desktop */
        text-shadow: 1px 1px 3px rgb(255, 255, 255); /* Sombra de texto similar ao desktop */
        margin: 0 auto 10px auto; /* Centraliza a caixa e adiciona margem inferior */
        padding: 5px 15px; /* Adiciona padding para o respiro do texto */
        border-radius: 8px; /* Cantos arredondados para o h2 */
        display: inline-block; /* Faz o background se ajustar à largura do texto */
        max-width: fit-content; /* Garante que a largura se ajuste ao conteúdo */
    }

    .hero-carousel .overlay-text h3 {
        font-size: 1.5em;
        margin: 0 0 15px 0;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .hero-carousel .overlay-text p {
        font-size: 0.9em;
        margin: 0 0 20px 0;
        text-align: center;
    }

    .hero-carousel .btn-small {
        display: none; /* Remove o botão no mobile */
        width: auto; /* Largura automática */
    }
     /* --- FIM DAS REGRAS DO HERO RESPONSIVO --- */

    
    .static-hero-section { height: auto; padding: 40px 0; justify-content: center;}
    .static-hero-overlay { width: 90%; border-radius: 15px; padding: 30px; text-align: center;}
    .hero-contact-logo { align-self: center; }
    .static-hero-overlay p { justify-content: center; }
    .social-icons-contact-hero { justify-content: center; }


    section { padding: 40px 0; }
    section h2 { font-size: 2em; }
    .highlight-grid, .solutions-grid { grid-template-columns: 1fr; }
    
    .highlights-section .container {
        padding: 20px;
    }
    
    .highlight-item { height: auto; }
    .highlight-item .highlight-image-line { height: 200px; }
    .highlight-item .highlight-text-line { height: auto; padding: 15px; }
    .highlight-item .highlight-button-line { height: auto; padding: 10px; }
    
    .contact-form-container { padding: 25px; }

    .footer-columns { flex-direction: column; align-items: center; }
    .main-footer .footer-col { text-align: center; margin-bottom: 20px; }
    
    .footer-col.links,
    .footer-col.contact {
        margin-top: 0;
    }
    
    .about-fabrici-content {
        flex-direction: column;
        text-align: center;
    }

    .about-fabrici-text {
        margin-top: 30px;
    }

    .about-fabrici-title h2 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-header .logo img { height: 40px; }
    .main-nav ul li a { font-size: 1em; }
    .btn.large { padding: 12px 25px; font-size: 1em; }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 20px;
        font-size: 28px;
    }
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 75px; 
        right: 20px;
        font-size: 18px;
    }
}