/*================================================================================
| Luthieria Hossony - Folha de Estilos Principal
|
| Versão: 1.5 (Final com todas as melhorias)
| Data: 08 de Julho de 2025
|
| Índice:
| --- 1. Variáveis e Reset Global
| --- 2. Estilos de Base e Tipografia
| --- 3. Classes Utilitárias (Layout e Botões)
| --- 4. Componentes Reutilizáveis
|     --- 4.1 Header (Cabeçalho)
|     --- 4.2 Footer (Rodapé)
|     --- 4.3 Formulários (Estilo Único)
|     --- 4.4 Botão Voltar ao Topo
|     --- 4.5 Botão de Retorno (Mobile)
| --- 5. Estilos Específicos das Seções
|     --- 5.1 Seção Hero (Slider)
|     --- 5.2 Seção Sobre (About)
|     --- 5.3 Seção Modelos em Destaque (com carrossel interno)
|     --- 5.4 Seção Galeria (Preview)
|     --- 5.5 Seção Contato
| --- 6. Estilos da Página da Galeria Completa
|     --- 6.1 Filtros e Grade
|     --- 6.2 Lightbox
| --- 7. Media Queries para Responsividade
================================================================================*/

/* --- 1. Variáveis e Reset Global --- */
:root {
  --primary-color: #8B5A2B;
  --secondary-color: #D2B48C;
  --dark-color: #2A2118;
  --white: #FFFFFF;
  --accent-color: #B8860B;
  --text-color: #333;
  --text-light: #777;
  --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-dark: 0 8px 25px rgba(0, 0, 0, 0.26);
  --font-title: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* --- 2. Estilos de Base e Tipografia --- */
body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  padding-top: 90px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 500;
  color: var(--dark-color);
}
.titleh2{
  font-size: 5px;
}
p {
  margin-bottom: 1rem;
  font: 600;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
    height: 500px;
}

:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- 3. Classes Utilitárias (Layout e Botões) --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid transparent;
  border-radius: 4px;
  font-family: var(--font-title);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: var(--dark-color);
  transform: translateY(-2px);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--accent-color);
}

.section-subtitle {
  text-align: center;
  margin-top: -30px;
  margin-bottom: 40px;
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- 4. Componentes Reutilizáveis --- */
/* --- 4.1 Header (Cabeçalho) --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  box-shadow: var(--shadow-dark);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 90px;
}

.logo h1 {
  font-size: 2rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

.logo p {
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-top: -5px;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}

.main-nav a:hover {
  color: var(--primary-color);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.blog-link {
  color: var(--accent-color) !important;
  font-weight: 700;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 1100;
}

/* --- 4.2 Footer (Rodapé) --- */
.main-footer {
  background-color: var(--dark-color);
  color: var(--secondary-color);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact i {
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0; /* Garante que os parágrafos não tenham margem extra */
}

/* NOVO: Estilo para o crédito do desenvolvedor */
.developer-credit {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(210, 180, 140, 0.7); /* Cor sutil para o texto */
    letter-spacing: 0.5px;
}

.developer-credit a {
    color: rgba(210, 180, 140, 0.9); /* Cor do link um pouco mais forte */
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.developer-credit a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* --- 4.3 Formulários (Estilo Único) --- */
.contact-form {
  background-color: rgba(252, 252, 252, 0.8);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-color);
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #c7b18b;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 5px rgba(184, 134, 11, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group label {
  position: absolute;
  top: 12px;
  left: 15px;
  color: var(--text-light);
  transition: all 0.3s ease;
  pointer-events: none;
  font-family: var(--font-title);
  font-size: 0.9rem;
  background-color: var(--white);
  padding: 0 5px;
}

.form-group input:focus+label,
.form-group input:valid+label,
.form-group select:valid+label,
.form-group select:focus+label,
.form-group textarea:focus+label,
.form-group textarea:valid+label {
  top: -8px;
  left: 10px;
  font-size: 0.8rem;
  color: var(--primary-color);
}

.contact-form .btn {
  display: block;
  width: 100%;
  padding: 15px 25px;
  font-size: 1.1rem;
  border-radius: 6px;
  box-shadow: var(--shadow-light);
}

.contact-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-dark);
}

/* --- 4.4 Botão Voltar ao Topo --- */
.scroll-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-dark);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: var(--dark-color);
  transform: translateY(-2px);
}

/* --- 4.5 Botão de Retorno (Mobile) --- */
.back-to-home-mobile {
  display: none;
  width: 100%;
  text-align: center;
  padding: 12px;
  margin-bottom: 30px;
  background-color: var(--white);
  color: var(--primary-color);
  border-radius: 5px;
  border: 1px solid var(--secondary-color);
  font-family: var(--font-title);
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: var(--shadow-light);
}

.back-to-home-mobile:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* --- 5. Estilos Específicos das Seções --- */
/* --- 5.1 Seção Hero (Slider) --- */
/* --- 5. Estilos Específicos das Seções --- */
/* Adicionar abaixo dos outros estilos de seção */

/* --- 5.X Seção Fila de Trabalhos --- */
.work-queue-section {
    padding: 100px 0;
    background-color: #fcfaf6; /* Um tom levemente diferente para destacar a seção */
}

.work-queue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.work-queue-grid ul li:hover {
  background-color: var(--primary-color);
  color: #eee;
}

.work-queue-column {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-queue-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.work-queue-column h3 {
    font-family: var(--font-title);
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.work-queue-column h3 i {
    margin-right: 15px;
    color: var(--accent-color);
}

.client-list {
    list-style: none;
    padding-left: 0;
}

.client-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--text-color);
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.client-list li:last-child {
    border-bottom: none;
}

.client-list li a {
    color: var(--primary-color);
    font-weight: 600;
}

.client-list li a:hover {
    text-decoration: underline;
    color: var(--accent-color);
}

/* --- 7. Media Queries para Responsividade --- */
/* Adicionar dentro da media query @media (max-width: 768px) */
@media (max-width: 768px) {
    .work-queue-grid {
        grid-template-columns: 1fr;
    }
}
.hero {
  height: calc(100vh - 90px);
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -90px;
  padding-top: 90px;
}

.hero-slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active-slide {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 7s linear;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.907), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 600px;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--white);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

/* --- 5.2 Seção Sobre (About) --- */
.about-section {
  padding: 100px 0;
  background-color: var(--white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  max-height: 450px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* --- 5.3 Seção Modelos em Destaque --- */
.featured-models-section {
  padding: 100px 0;
  background-color: var(--white);
}

.item-destaque {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.item-destaque:last-child {
  margin-bottom: 0;
}

.item-destaque.item-destaque-reverse {
  flex-direction: row-reverse;
}

.item-destaque-img {
  flex: 1;
  min-width: 300px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  max-height: 500px;
  min-height: 400px;
  background-color: var(--white);
}

.item-destaque-img:hover .carousel-btn-inner {
  opacity: 1;
}

.item-destaque-desc {
  flex: 1.2;
  min-width: 300px;
}

.item-destaque-desc h3 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.item-destaque-desc>p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.7;
  color: var(--text-light);
}

.item-destaque-desc ul {
  margin-bottom: 30px;
}

.item-destaque-desc ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.item-destaque-desc ul li::before {
  font-family: "Font Awesome 6 Free";
  content: '\f00c';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--accent-color);
}

.item-destaque-desc .btn {
  margin-top: 10px;
}

/* Carrossel Interno */
.image-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.carousel-track-inner {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide-inner {
  min-width: 100%;
  height: 100%;
  cursor: grab;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-slide-inner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.carousel-slide-inner:hover img {
    transform: scale(1.05);
}

.carousel-btn-inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

.carousel-btn-inner:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.carousel-btn-inner.prev {
  left: 15px;
}

.carousel-btn-inner.next {
  right: 15px;
}

.carousel-dots-inner {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--white);
}

/* --- 5.4 Seção Galeria e Contato --- */
/* --- 5.4 Seção de Vídeos --- */
.video-section {
  padding: 100px 0;
  background-color: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Proporção 16:9 para vídeos */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-dark);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery-section {
  padding: 100px 0;
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: var(--shadow-light);
  height: 250px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.907), rgba(0, 0, 0, 0.2));
}

.gallery-item:hover {
  border: solid 2px var(--accent-color);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.907), rgba(0, 0, 0, 0.2));
}

.gallery-cta {
  text-align: center;
}

.contact-section {
  padding: 100px 0;
  background-color: var(--white);
}

.contact-content {
  display: flex;
  gap: 50px;
}

.contact-info,
.contact-form {
  flex: 1;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.contact-info address p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 15px;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
.social-links i{
  color: white;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--dark-color);
  transform: translateY(-3px);
}

.whatsapp-cta {
  text-align: center;
  margin-top: 50px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 25px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 4px;
  font-family: var(--font-title);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.whatsapp-btn i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

/* --- 6. Estilos da Página da Galeria Completa --- */
.full-gallery {
  padding: 50px 0;
  background-color: var(--white);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  font-family: var(--font-title);
  background-color: var(--white);
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: var(--secondary-color);
  color: var(--dark-color);
}

.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 3fr));
  gap: 20px;
}

.gallery-img-container {
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  height: 240px;
  box-shadow: var(--shadow-light);
}

.gallery-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-img-container:hover img {
  transform: scale(1.05);
}

.gallery-img-container:hover {
  border: solid 2px var(--accent-color);
}


.lightbox {
  display: none; /* Alterado para 'flex' via JS */
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
 /* Flexbox para centralizar a imagem */
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox-content {
  /* Dimensionamento corrigido */
  max-width: 95vw;   /* Usa 95% da largura da tela */
  max-height: 90vh;  /* Usa 90% da altura da tela */
  width: auto;
  height: auto;
  /* Chave para não distorcer a imagem */
  object-fit: contain;
  /* Estilo e remoção de margens antigas */
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  margin: 0;
  display: block;
}

.close-lightbox,
.prev-img,
.next-img {
  color: var(--white);
  position: absolute;
  transition: 0.3s;
  cursor: pointer;
  user-select: none;
}

.close-lightbox {
  top: 15px;
  right: 35px;
  font-size: 40px;
}

.prev-img,
.next-img {
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  padding: 16px;
}

.prev-img { left: 15px; }
.next-img { right: 15px; }

.close-lightbox:hover,
.prev-img:hover,
.next-img:hover {
  color: var(--secondary-color);
}

.lightbox-caption {
  text-align: center;
  color: var(--secondary-color);
  padding: 15px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  letter-spacing: 1px;
  /* Posicionamento absoluto para ficar abaixo da imagem */
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

/* --- 7. Media Queries para Responsividade --- */
@media (max-width: 992px) {
  .about-content,
  .contact-content,
  .item-destaque,
  .item-destaque.item-destaque-reverse {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }

  .main-header .container {
    min-height: 80px;
  }

  .main-nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--dark-color);
    color: var(--white);
    flex-direction: column;
    padding-top: 100px;
    align-items: center;
    transition: right 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }

  .main-nav ul.active {
    right: 0;
  }

  .main-nav li {
    margin: 20px 0;
  }

  .main-nav a,
  .main-nav a:hover {
    color: var(--white);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    height: auto;
    padding: 100px 0;
    margin-top: -80px;
    padding-top: 80px;
    background-attachment: scroll;
  }

  .hero-content h2 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .item-destaque-desc h3 {
    font-size: 1.8rem;
  }

  .full-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .gallery-img-container {
    height: 200px;
  }

  .contact-content {
    flex-direction: column;
  }
  
  .back-to-home-mobile {
    display: inline-flex;
  }
}

/* --- 7. Media Queries para Responsividade --- */
@media (max-width: 992px) {
  .about-content,
  .contact-content,
  .item-destaque,
  .item-destaque.item-destaque-reverse {
  flex-direction: column;
  gap: 40px;
  }
}

@media (max-width: 768px) {
  body { padding-top: 80px; }
  .main-header .container { min-height: 80px; }

  .main-nav ul {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--dark-color);
  color: var(--white);
  flex-direction: column;
  padding-top: 100px;
  align-items: center;
  transition: right 0.4s ease-in-out;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }
  .main-nav ul.active { right: 0; }
  .main-nav li { margin: 20px 0; }
  .main-nav a,
  .main-nav a:hover { color: var(--white); }
  .mobile-menu-toggle { display: block; }
  .hero { height: auto; padding: 100px 0; margin-top: -80px; padding-top: 80px; }
  .hero-content h2 { font-size: 1.5rem; }
  .section-title { font-size: 2rem; }
  .item-destaque-desc h3 { font-size: 1.8rem; }
  .full-gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .gallery-img-container { height: 200px; }
  .contact-content { flex-direction: column; }
  .back-to-home-mobile { display: inline-flex; }
  .work-queue-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { width: 95%; }
  .item-destaque-img { min-height: 300px; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-contact address p { justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 220px; }
  .full-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-img-container { height: 150px; }
  .contact-form { padding: 30px 20px; }
}