/* ==========================================================================
   Reset & Font Imports
   ========================================================================== */

/* Importa as fontes do Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Reset básico e configurações globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none !important;
}

*:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Estilos para o efeito de zoom nas imagens da galeria (zoom interno) */
.wrapper-gallery img {
  transition: all 1s ease-out;
  object-fit: cover;
  /* Garante que a imagem cubra o espaço mantendo a proporção */
  filter: brightness(1.1) contrast(1.05);
  /* Adicionado o filtro inicial da Home */
}

.wrapper-gallery img:hover {
  transform: scale(1.1);
  /* Aumenta o tamanho da imagem em 10%, criando o efeito de zoom */
}


html {
  &::-webkit-scrollbar {
    display: none;
    /* Esconde a barra de rolagem */
  }

  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 80px;
  /* Garante que o header não cubra o conteúdo ao navegar por âncoras */
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fefefe;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Classes de fonte para fácil utilização */
.font-antonio {
  font-family: "Antonio", sans-serif;
}

.font-poppins {
  font-family: "Poppins", sans-serif;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: "Antonio", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #2d2d2d;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.7;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #2d2d2d;
}

.cta-button-header {
  padding: 8px 24px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid #ccc;
  background: transparent;
  color: #2d2d2d;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button-header:hover {
  border-color: #2d2d2d;
  background: #2d2d2d;
  color: white;
}

/* Header com efeito de scroll */
.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Mobile Menu */
.mobile-menu-button {
  display: none;
  padding: 8px;
  background: none;
  border: none;
  color: #2d2d2d;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid #eee;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.mobile-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: #2d2d2d;
}

.mobile-nav .cta-button-header {
  margin-top: 16px;
  width: fit-content;
  display: block;
}

/* ==========================================================================
   Conteúdo Principal e Seções Comuns
   ========================================================================== */
.main-content {
  padding-top: 80px;
  /* Ajustado para 80px para o header fixo */
  padding-bottom: 80px;
}

/* Variáveis CSS */
:root {
  --base-text-size: 269px;
}

/* Title Section */
.title-section {
  padding: 0 24px 48px;
  margin-bottom: 40px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.title-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.main-title {
  font-family: "Antonio", sans-serif;
  font-size: 180px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -3px;
  color: #2d2d2d;
  margin: 0;
  flex-shrink: 0;
}

/* Ajuste para "Interior Design Photography" ficar em uma linha */
.main-title.page-specific-font {
  font-size: 180px;
  /* Tamanho ajustado para caber em uma linha */
  white-space: nowrap;
  /* Evita quebra de linha */
  line-height: 1;
  /* Garante que não haja espaço extra acima/abaixo */
}

/* Novo estilo para o título da página Vacation Home Photography */
.main-title.vacation-home-title {
  font-size: 180px !important;
  /* Ajuste o tamanho conforme o desejado */
  line-height: 1;
  /* Para melhor alinhamento do texto */
}

/* Estilo específico para o título de Real Estate Photography */
.main-title.page-specific-font-real-estate {
  font-size: 180px !important;
  /* Mantém o tamanho original de 269px */
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -3px;
}


.main-title .italic {
  font-weight: 300;
  color: #666;
  font-style: italic;
}

.title-description {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #666;
  width: 80%;
  line-height: 1.7;
  text-align: left;
  margin-top: 40px;
  font-size: calc(var(--base-text-size) / 8);
}

/* List styles for What We Deliver / What You Get */
#what-you-get {
  padding: 0px 24px 120px;
}

#what-you-get h3 {
  font-size: calc(var(--base-text-size) / 3);
}

#what-you-get p {
  font-size: calc(var(--base-text-size) / 10);
  font-weight: 300;
  color: #666;

}

#what-you-get ul li {
  font-size: calc(var(--base-text-size) / 10);
  margin: 20px 0;
  font-weight: 300;
  color: #666;
}

.what-you-get-list ul,
.what-we-deliver-list ul,
.title-description-layout ul {
  list-style: none;
  /* Remove default bullet points */
  padding: 0;
  margin: 20px 0 0 0;
  /* Adjust spacing */
  /* font-size: calc(var(--base-text-size) / 10); */
  color: #666;
  /* Cor do texto da lista */
  font-size: calc(var(--base-text-size) / 8);
}

.what-you-get-list ul li::before,
.what-we-deliver-list ul li::before,
.title-description-layout ul li::before {
  content: "•";
  /* Custom bullet point */
  color: #2d2d2d;
  /* Cor do bullet */
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0;
}

.what-you-get-list ul li,
.what-we-deliver-list ul li,
.title-description-layout ul li {
  margin-bottom: 10px;
  /* Space between list items */
  position: relative;
  padding-left: 20px;
  /* Space for custom bullet */
}

/* Seção de Fundo com Imagem e Overlay */
.bg-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  height: 100vh;
  padding: 100px 60px;
  padding-left: 500px;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("https://i.imgur.com/tATR7WJ.jpeg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-section .main-title,
.bg-section .title-description {
  color: #fefefe;
  z-index: 2;
}

.bg-section .title-description {
  max-width: 600px;
  margin-right: auto;
}

/* Layout Side by Side */
.layout-side-by-side {
  width: 100%;
  padding: 48px 24px;
  margin-bottom: 80px;
  margin-top: 92px;
}

.layout-side-by-side .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  flex-direction: column;
}

.layout-side-by-side .main-title {
  flex-shrink: 0;
  margin-bottom: 0;
}

.layout-side-by-side .title-description {
  max-width: 500px;
  margin-top: 20px;
}

/* Comparison Section - Universal Styles */
.comparison-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}

.comparison-section.full-height {
  height: 100vh;
}

.comparison-container {
  position: relative;
  width: 100%;
  height: 100%;
  user-select: none;
}

.comparison-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-before {
  z-index: 1;
}

.image-after {
  z-index: 2;
  transition: clip-path 0.1s ease-out;
  clip-path: inset(0 50% 0 0);
}

.comparison-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: white;
  z-index: 3;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-handle:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.slider-handle::before,
.slider-handle::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #2d2d2d;
  border-radius: 50%;
}

.slider-handle::before {
  left: 12px;
}

.slider-handle::after {
  right: 12px;
}

/* Image Sections with Comparison (food-photography.php) */
.full-viewport-width {
  width: 100vw;
}

.image-gallery-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  height: 400px;
  /* Será ajustado na responsividade */
  margin-bottom: 80px;
}

.image-gallery-section img {
  width: 100%;
  /* Imagens ocupam a largura total do seu contêiner */
  height: 100%;
  /* Imagens ocupam a altura total do seu contêiner */
  object-fit: cover;
  /* Garante que as imagens preencham sem distorção */
}


.aspect-4-3 {
  aspect-ratio: 4 / 3;
}

.video-container {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.video-medium {
  width: 600px;
  /* Será ajustado na responsividade */
  max-width: 100%;
  /* Garante que não exceda o contêiner pai */
  height: auto;
  /* Mantém a proporção do vídeo */
}

/* Duas imagens e três imagens (food-photography.php) */
.two-images-section {
  width: 100%;
  padding: 48px 24px;
  margin-bottom: 80px;
}

.two-images-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
}

.image-left,
.image-right {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-left {
  width: 400px;
  height: 600px;
}

.image-right {
  width: 450px;
  height: 700px;
}

/* Three Images Section - Full Width */
.three-images-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0;
  margin-bottom: 80px;
}

.three-images-container {
  width: 100%;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.image-item {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  height: 500px;
  /* Será ajustado na responsividade */
  overflow: hidden;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Showcase Details (do real-estate-photography.php) */
.showcase-details-2-slider-area {
  padding-bottom: 120px;
}

.showcase-details-2-slider-wrap {
  display: flex;
  gap: 20px;
}

.showcase-details-2-slider-item {
  flex-shrink: 0;
  width: auto;
  height: auto;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.showcase-details-2-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s ease-out;
  filter: brightness(1.1) contrast(1.05);
}

.showcase-details-2-slider-item:hover img {
  transform: scale(1.1);
}

/* CTA Buttons Section */
.cta-buttons-section {
  width: 100%;
  padding: 20px 24px;
  background: white;
  text-align: center;
}

.cta-buttons-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 64px;
}

.cta-button-large {
  padding: 24px 64px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  border: 2px solid #2d2d2d;
  background: transparent;
  color: #2d2d2d;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  cursor: pointer;
}

.cta-button-large:hover {
  background: #2d2d2d;
  color: white;
}

.cta-button-large.reserve-now {
  color: white;
  background-color: #2d2d2d;
}

.cta-button-large.reserve-now:hover {
  background-color: white;
  color: #2d2d2d;
}

/* Contact Form Section */
.contact-section {
  padding: 128px 24px;
}

.contact-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 75px;
  align-items: flex-start;
}

.contact-info .contact-title-group {
  margin-bottom: 24px;
}

.contact-info h3 {
  font-family: "Antonio", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info p {
  font-family: "Antonio", sans-serif;
  font-size: 48px;
  font-weight: 300;
  color: #555;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info .arrow-img {
  width: 120px;
  height: auto;
  margin-top: 24px;
}

.form-group {
  position: relative;
  margin-bottom: 32px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #aaa;
  font-weight: 300;
}

.form-input:focus,
.form-textarea:focus {
  border-bottom-color: #2d2d2d;
}

.form-textarea {
  resize: none;
  min-height: 80px;
}

.form-submit {
  display: block;
  margin: 32px auto 0;
  padding: 12px 48px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  border: 1px solid #ccc;
  background-color: #2d2d2d;
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.form-submit:hover {
  border-color: #2d2d2d;
  background: #fff;
  color: #2d2d2d;
}

/* Reviews Section */
.reviews-section {
  background-color: #2d2d2d;
  margin-top: 80px;
  padding: 120px 24px;
  position: relative;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.reviews-title {
  font-family: "Antonio", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.reviews-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #ccc;
  margin-bottom: 80px;
  line-height: 1.7;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.review-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 32px;
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.review-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.review-item::before {
  content: "•";
  position: absolute;
  top: 20px;
  left: 32px;
  font-size: 24px;
  color: #ccc;
  font-weight: bold;
}

.review-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: white;
  line-height: 1.6;
  margin-top: 16px;
}

.reviews-highlight {
  font-family: "Antonio", sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #ccc;
  font-style: italic;
  margin-top: 40px;
  letter-spacing: -1px;
}

/* GET IN TOUCH SECTION */
.cta-section {
  font-family: "Antonio", sans-serif;
  padding: 0px 24px;
}

.get-in-touch-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.get-in-touch {
  transition: transform 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  width: 100%;
  font-size: 12rem;
  /* Ajustado para evitar corte */
  font-weight: 300;
  color: #2d2d2d !important;
  text-transform: lowercase;
  white-space: nowrap;
  /* Impede a quebra de linha */
}

.get-in-touch:hover {
  transform: scale(1.05) translateY(-8px);
}

.get-in-touch .italic {
  font-style: italic;
  color: #666 !important;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: #2d2d2d;
  color: #fefefe;
  padding: 80px 24px 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-contact h3 {
  font-family: "Antonio", sans-serif;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-item p {
  font-weight: 300;
  color: #ccc;
  line-height: 1.6;
}

.footer-section h4 {
  font-family: "Antonio", sans-serif;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  font-size: 14px;
  font-weight: 300;
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: #fefefe;
}

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid #555;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-links span {
  color: #999;
  font-size: 14px;
}

.social-links a {
  color: #999;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: white;
}

.copyright {
  font-size: 14px;
  font-weight: 300;
  color: #999;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1DA851;
  transform: scale(1.05);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  vertical-align: middle;
}

/* ==========================================================================
   Galeria de Imagens (Universal)
   ========================================================================== */
.gallery-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.gallery-overlay.active {
  display: flex;
}

.gallery-content {
  position: relative;
  width: 90%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item {
  display: none;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-item.active {
  display: block;
}

.gallery-item.video {
  width: 100%;
  height: 100%;
}

.gallery-close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 101;
  padding: 10px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.gallery-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.gallery-nav:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

/* ==========================================================================
   SEÇÕES ESPECÍFICAS DO INDEX.PHP
   ========================================================================== */
.section-padding {
  padding: 96px 24px 0px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: "Antonio", sans-serif;
  font-size: 80px;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -2px;
  color: #2d2d2d;
}

.section-title .medium {
  font-weight: 500;
}

.section-title .italic {
  font-style: italic;
  color: #666;
}

/* Seção de Services (index.php) */
.services-section {
  padding: 128px 24px;
  background: white;
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background: rgba(249, 250, 251, 0.3);
  transition: all 0.7s ease;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  background: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.service-image {
  height: 384px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-out;
  filter: brightness(1.1) contrast(1.05);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 32px 10px;
}

.service-title {
  font-family: "Antonio", sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #2d2d2d;
  margin-bottom: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}

.service-description {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #666;
}

/* Seção de Logos (index.php) */
.logos-section {
  background: white;
  overflow: hidden;
  padding: 96px 0;
}

.logos-title {
  text-align: center;
  margin-bottom: 48px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #999;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.logos-carousel-container {
  display: flex;
  width: fit-content;
  animation: scroll 30s linear infinite;
  will-change: transform;
}

.logos-track {
  display: flex;
  gap: 80px;
  padding: 0 24px;
}

.logo-item {
  flex-shrink: 0;
}

.logo-item img {
  height: 36px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
}

.logo-item:hover img {
  opacity: 0.7;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Seção do Processo Criativo (index.php) */
.process-section {
  overflow: hidden;
}

.process-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateX(8px);
}

.process-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  margin-top: 8px;
}

.process-step-content h3 {
  font-family: "Antonio", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2d2d2d;
  margin-top: 12px;
}

.process-step-content p {
  font-weight: 300;
  color: #666;
}

.process-cta-button {
  margin-top: 32px;
  display: inline-block;
}

/* Seção do Portfolio (index.php e páginas de serviço) */
.portfolio-section {
  background: white;
  padding: 0 24px;
  margin: 80px 0;
  margin-top: 150px;
}

.portfolio-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  /* Layout padrão para index */
  gap: 64px;
  align-items: flex-start;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Padrão para index */
  gap: 24px;
  height: auto;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.portfolio-item:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out, filter 0.7s ease-out;
}

.portfolio-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

.portfolio-item.large {
  grid-column: span 2;
  height: 300px;
}

.portfolio-item.medium {
  /* height: 500px !important; */
}

.portfolio-item.small {
  height: 200px;
}

/* Seção da Equipe (index.php) */
.team-section {
  margin: 64px 0;
  background: white;
  overflow: hidden;
}

.team-carousel-wrapper {
  display: flex;
  width: fit-content;
  animation: teamScroll 40s linear infinite;
  will-change: transform;
}

.team-carousel {
  display: flex;
  gap: 32px;
  padding-right: 30px;
  box-sizing: content-box;
}

.team-member {
  flex-shrink: 0;
  width: 320px;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.team-member:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.team-member:hover img {
  transform: scale(1.1);
}

@keyframes teamScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   PÁGINAS DE SERVIÇO - ESTILOS GENÉRICOS
   ========================================================================== */
.page-title-section {
  padding: 80px 24px 40px;
  text-align: center;
}

.page-main-title {
  font-family: "Antonio", sans-serif;
  font-size: 96px;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -3px;
  color: #2d2d2d;
  margin-bottom: 32px;
}

.page-main-title .italic {
  font-style: italic;
  color: #666;
}

.page-title-description {
  font-size: 18px;
  font-weight: 300;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.what-we-deliver-list p:nth-child(1) {
  font-size: 6rem;
  color: #2d2d2d
}

.what-we-deliver-list p:nth-child(1) {
  font-size: 6rem;
  color: #2d2d2d
}

.what-we-deliver-list p {
  font-size: 2rem;
}

.service-portfolio-section {
  padding: 48px 24px 0px 24px;
}

.service-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ESTILOS ESPECÍFICOS PARA PÁGINAS DE SERVIÇO (EX: INTERIOR DESIGN) */

/* Sobrepõe o layout do .portfolio-container para a seção de Interior Design */
.interior-portfolio-section .portfolio-container {
  display: block;
  /* Remove o display grid do container pai */
  max-width: 1200px;
  /* Garante que o container não fique muito largo */
  margin: 0 auto;
  /* Centraliza o container */
  padding: 0 24px;
  /* Ajusta o padding para ser consistente */
  gap: 0;
  /* Remove qualquer gap que o display grid anterior possa ter adicionado */
}

/* Define o layout da grade dentro da seção de Interior Design */
.interior-portfolio-section .portfolio-grid {
  grid-template-columns: repeat(4, 1fr);
  /* 4 colunas */
  grid-template-rows: repeat(2, 1fr);
  /* 2 linhas */
  height: auto;
  /* Ajuste a altura total da grade conforme necessário */
  gap: 24px;
  /* Espaçamento entre os itens da grade */
}

/* Estilos específicos para a página Vacation Home Photography */
.main-content {
  padding-top: 128px;
  padding-bottom: 80px;
}

/* A regra abaixo foi removida ou ajustada para não mais diminuir o título */
/* .main-title.page-specific-font {
  font-size: calc(var(--base-text-size) / 4) !important;
} */
/* Revertendo o tamanho da fonte para o padrão da vacation home */

.what-we-deliver-list ul {
  color: #666;
}

/* Estilos que estavam inline ou duplicados no real-estate-photography.php */
.title-description {
  font-size: calc(var(--base-text-size) / 8);
}

.what-you-get-list {
  font-size: calc(var(--base-text-size) / 8);
}

.what-you-get-list ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  font-size: calc(var(--base-text-size) / 8);
  /* MANTIDO COMO ESTAVA NO INLINE */
}

.bg-section .main-title,
.bg-section .title-description {
  color: #fefefe;
  z-index: 2;
}

.bg-section .title-description {
  max-width: 600px;
  margin-right: auto;
}

.title-description {
  margin-right: auto;
}

/* 
.layout-side-by-side .container {
  margin-left: 700px; /
} */

/* Estilos do Grid Personalizado para o portfólio de Vacation Home */
.vacation-portfolio-section .portfolio-container {
  display: block;
  /* Remove o display grid do container pai */
  max-width: 1400px;
  /* Garante que o container não fique muito largo, ou ajuste conforme necessário */
  margin: 0 auto;
  /* Centraliza o container */
  padding: 0 24px;
  /* Ajusta o padding para ser consistente */
}

.vacation-portfolio-section .portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  /* Coluna da esquerda um pouco mais larga */
  grid-template-areas:
    "top-image top-image"
    "left-vertical right-small-top"
    "left-vertical right-small-bottom"
    "bottom-image bottom-image";
  gap: 0;
  /* Removido o espaçamento para evitar conflitos com margens */
  height: auto;
}

.portfolio-item.item-top-large {
  grid-area: top-image;
  height: 500px;
}

.portfolio-item.item-left-vertical {
  grid-area: left-vertical;
  height: 650px;
}

.portfolio-item.item-right-small-top {
  grid-area: right-small-top;
  height: 325px;
}

.portfolio-item.item-right-small-bottom {
  grid-area: right-small-bottom;
  height: 325px;
}

.portfolio-item.item-bottom-large {
  grid-area: bottom-image;
  height: 500px;
}

.cta-section {
  padding: 100px 24px 0px 24px;
}

.reviews-section {
  background-color: #2d2d2d;
  margin-top: 80px;
  padding: 120px 24px;
  position: relative;
}

.reviews-title {
  font-family: "Antonio", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.reviews-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #ccc;
  margin-bottom: 80px;
  line-height: 1.7;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.review-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 32px;
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.review-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.review-item::before {
  content: "•";
  position: absolute;
  top: 20px;
  left: 32px;
  font-size: 24px;
  color: #ccc;
  font-weight: bold;
}

.review-text {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: white;
  line-height: 1.6;
  margin-top: 16px;
}

.reviews-highlight {
  font-family: "Antonio", sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #ccc;
  font-style: italic;
  margin-top: 40px;
  letter-spacing: -1px;
}

.footer {
  background: #2d2d2d;
  color: white;
  padding: 64px 24px;
}

.footer-container {
  grid-template-columns: repeat(3, 1fr);
}

.footer-contact h3 {
  font-family: "Antonio", sans-serif;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-item p {
  font-weight: 300;
  color: #ccc;
  line-height: 1.6;
}

.get-in-touch .italic {
  color: #2d2d2d !important;
  /* Overriding with !important if necessary, but try to avoid it */
}

.footer-section h4 {
  font-family: "Antonio", sans-serif;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ==========================================================================
   Animações e Utilitários
   ========================================================================== */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hidden {
  display: none;
}

/* ==========================================================================
   RESPONSIVIDADE (Consolidada)
   ========================================================================== */

/* Telas maiores que 1400px (desktop grande) */
@media (min-width: 1400px) {
  .portfolio-grid {
    height: 900px;
    gap: 32px;
  }
}

/* Telas médias (tablet horizontal, laptop pequeno) - max-width: 1024px */
@media (max-width: 1024px) {
  .title-container {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .main-title {
    font-size: 64px !important;
  }

  /* Ajuste para o título da página Vacation Home Photography em telas menores (tablet) */
  .main-title.vacation-home-title {
    font-size: 64px !important;
    /* Tamanho ajustado para tablets */
    line-height: 1;
  }

  /* Ajuste para o título da página Real Estate Photography em telas menores (tablet) */
  .main-title.page-specific-font-real-estate {
    font-size: 64px !important;
    /* Reduzindo o tamanho da fonte para algo legível */
    text-align: center;
    /* Centraliza o título */
  }

  .title-description {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
  }

  .layout-side-by-side .container {
    flex-direction: column;
    gap: 32px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .layout-side-by-side .main-title {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .layout-side-by-side .title-description {
    max-width: 500px;
    margin-top: 20px;
  }

  .portfolio-grid {
    height: auto;
    gap: 20px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-title {
    font-size: 36px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-container,
  .portfolio-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-title {
    font-size: 64px;
    text-align: center;
  }

  .process-container .section-title {
    text-align: left;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info .arrow-img {
    margin: 24px auto 0;
    transform: rotate(90deg);
  }

  /* Ajuste específico para interior-portfolio-section em 1024px */
  .interior-portfolio-section .portfolio-container {
    grid-template-columns: 1fr;
    /* Garante que mesmo em tablets ele não tente um layout de 2 colunas */
    gap: 24px;
  }

  /* Ajustes para o layout do portfólio de Vacation Home em telas menores (tablet) */
  .vacation-portfolio-section .portfolio-grid {
    grid-template-columns: 1fr;
    /* Muda para uma única coluna */
    grid-template-areas:
      "top-image"
      "left-vertical"
      "right-small-top"
      "right-small-bottom"
      "bottom-image";
    height: auto;
    gap: 0;
    /* Espaçamento entre os itens do grid */
  }

  .vacation-portfolio-section .portfolio-item.item-top-large,
  .vacation-portfolio-section .portfolio-item.item-left-vertical,
  .vacation-portfolio-section .portfolio-item.item-right-small-top,
  .vacation-portfolio-section .portfolio-item.item-right-small-bottom,
  .vacation-portfolio-section .portfolio-item.item-bottom-large {
    height: auto;
    /* Altura padrão para todos os itens em tablet */
  }

  /* Ajustes para mobile no real-estate-photography.php */
  .what-you-get-list {
    font-size: 16px !important;
    /* Ajusta a largura para ocupar mais espaço */
    margin-left: auto;
    margin-right: auto;
    /* Centraliza a lista */
    text-align: left;
    /* Mantém o alinhamento do texto da lista à esquerda */
    width: 90%;
    /* Ajusta a largura da lista */
  }

  .what-you-get-list p {
    font-size: 16px !important;
    /* Ajusta o tamanho da fonte da lista */
    text-align: center;
  }

  .what-you-get-list ul {
    list-style-position: inside;
    /* Garante que os marcadores fiquem dentro da lista */
    padding-left: 0;
    /* Remove padding extra da lista */
  }

  .bg-section {
    padding-left: 24px;
    /* Remove o padding excessivo da esquerda */
    padding-right: 24px;
    /* Adiciona padding à direita */
    height: 70vh;
    /* Ajusta a altura da seção de fundo */
  }

  .bg-section .main-title {
    font-size: 60px !important;
    /* Ajusta o título na seção de fundo */
    text-align: center;
    width: 100%;
    /* Ocupa a largura total */
  }

  .bg-section .title-description {
    max-width: 90%;
    /* Aumenta a largura da descrição */
    text-align: center;
  }

  .layout-side-by-side .container {
    margin-left: auto;
    margin-right: auto;
    /* Centraliza a seção side-by-side */
    gap: 24px;
    padding: 0 24px;
  }

  .layout-side-by-side .main-title {
    font-size: 48px !important;
    /* Ajusta o título na seção side-by-side */
    text-align: center;
  }

  .layout-side-by-side .title-description {
    text-align: center;
    max-width: 100%;
    /* Ajusta a largura da descrição */
  }

  /* Ajustes para as galerias horizontais */
  .showcase-details-2-slider-area {
    overflow-x: scroll;
    /* Permite a rolagem horizontal */
    -webkit-overflow-scrolling: touch;
    /* Suporte para rolagem suave em iOS */
    scroll-snap-type: x mandatory;
    /* Para rolagem suave de item a item */
    padding-bottom: 20px;
    /* Adiciona espaço para a barra de rolagem */
  }

  .showcase-details-2-slider-wrap {
    gap: 20px;
    /* Reduz o gap entre as imagens da galeria */
    flex-wrap: nowrap;
    /* Impede que os itens quebrem para a próxima linha */
  }

  .showcase-details-2-slider-item {
    flex-shrink: 0;
    /* Impede que os itens encolham */
    scroll-snap-align: center;
    /* Alinha o item ao centro ao rolar */
    width: 80vw;
    /* Ocupa a maior parte da tela */
    height: 60vw;
    /* Mantém a proporção */
    max-height: 400px;
    /* Limite de altura */
  }

  .showcase-details-2-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Garante que a imagem cubra o espaço */
  }

  .get-in-touch {
    font-size: clamp(3rem, 10vw, 8rem) !important;
    /* Ajusta o tamanho da fonte para mobile */
    padding: 30px 0;
    /* Reduz o padding vertical */
  }

  .get-in-touch:hover {
    transform: none;
    /* Remove a transformação no hover para mobile (touch) */
  }

  .contact-info {
    text-align: center;
    /* Centraliza o texto do contato */
  }
}

/* Telas menores (tablet vertical, celular grande) - max-width: 768px */
@media (max-width: 768px) {
  .what-we-deliver-list p {
    font-size: 16px !important
  }

  .nav,
  .cta-button-header,
  .cta-button {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .main-title {
    font-size: 48px !important;
    margin-bottom: 24px;
  }

  /* Ajuste para o título da página Vacation Home Photography em telas menores (celular) */
  .main-title.vacation-home-title {
    font-size: 48px !important;
    /* Tamanho ajustado para celular */
    line-height: 1;
  }

  /* Ajuste para o título da página Real Estate Photography em telas menores (celular) */
  .main-title.page-specific-font-real-estate {
    font-size: 60px !important;
    /* Reduzindo o tamanho da fonte para algo legível */
    text-align: center;
    /* Centraliza o título */
  }

  .title-description {
    font-size: 16px !important;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 95%;
  }

  .comparison-section.full-height {
    height: 70vh;
  }

  .slider-handle {
    width: 40px;
    height: 40px;
  }

  .two-images-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .image-left,
  .image-right {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* Permite que a altura se ajuste */
  }

  .three-images-container {
    flex-direction: column;
    gap: 4px;
  }

  .image-item {
    height: 300px;
    /* Altura padrão para itens de imagem em mobile */
  }

  .cta-button-large {
    padding: 18px 48px;
    font-size: 16px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
  }

  #what-you-get h3,
  .contact-info h3,
  .contact-info p {
    font-size: 32px;
  }



  #what-you-get ul li {
    font-size: 1.3rem;
  }

  #what-you-get ul {
    margin: 0 auto;
    padding: 0 20px;
  }

  .reviews-section {
    padding: 80px 24px;
  }

  .reviews-title {
    font-size: 28px;
  }

  .reviews-subtitle {
    font-size: 16px;
    margin-bottom: 60px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    /* Força uma coluna */
    gap: 24px;
  }

  .review-item {
    padding: 32px 24px;
  }

  /* Ajuste para o bullet point nas telas menores */
  .review-item::before {
    content: "•";
    position: absolute;
    top: 50%;
    /* Centraliza verticalmente o bullet */
    transform: translateY(-50%);
    /* Ajuste fino da centralização vertical */
    font-size: 20px;
    /* Diminui um pouco o tamanho do bullet */
    left: 10px;
    /* Ajusta a posição do bullet para não cortar */
  }

  .review-text {
    padding-left: 20px;
    /* Adiciona padding para o texto não sobrepor o bullet */
    text-align: left;
    /* Alinha o texto à esquerda */
  }

  .reviews-highlight {
    font-size: 24px;
    margin-top: 32px;
  }

  /* Gallery mobile adjustments */
  .gallery-content {
    width: 95%;
    height: 95%;
  }

  .gallery-nav {
    font-size: 30px;
    padding: 8px 12px;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-close {
    font-size: 24px;
    top: 10px;
    left: 10px;
  }

  /* Index specific adjustments for 768px */
  .section-title {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .process-container .section-title {
    text-align: center;
  }

  .logos-track {
    gap: 40px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    gap: 16px;
  }

  .portfolio-item.large,
  .portfolio-item.medium,
  .portfolio-item.small {
    height: 500px !important;
  }

  .get-in-touch {
    font-size: clamp(3rem, 10vw, 8rem) !important;
    padding: 30px 0;
  }

  .get-in-touch:hover {
    transform: none;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 12px;
  }

  .footer-contact,
  .footer-section {
    text-align: left;
  }

  .contact-item {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
  }

  .page-main-title {
    font-size: 60px !important;
    text-align: center;
  }

  .what-you-get-list,
  .what-we-deliver-list {
    font-size: 16px !important;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    width: 90%;
  }

  .what-you-get-list p,
  .what-we-deliver-list p {
    /* font-size: 26px !important; */
    text-align: center;
  }

  .what-you-get-list ul,
  .what-we-deliver-list ul {
    list-style-position: inside;
    padding-left: 0;
  }

  .bg-section {
    padding-left: 24px;
    padding-right: 24px;
    height: 70vh;
  }

  .bg-section .main-title {
    font-size: 60px !important;
    text-align: center;
    width: 100%;
  }

  .bg-section .title-description {
    max-width: 90%;
    text-align: center;
  }

  .layout-side-by-side .container {
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
    padding: 0 24px;
  }

  .layout-side-by-side .main-title {
    font-size: 48px !important;
    text-align: center;
  }

  .layout-side-by-side .title-description {
    text-align: center;
    max-width: 100%;
  }

  .showcase-details-2-slider-area {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
  }

  .showcase-details-2-slider-wrap {
    gap: 20px;
    flex-wrap: nowrap;
  }

  .showcase-details-2-slider-item {
    flex-shrink: 0;
    scroll-snap-align: center;
    width: 80vw;
    height: 60vw;
    max-height: 400px;
  }

  .showcase-details-2-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .contact-info .arrow-img {
    margin: 24px auto 0;
  }

  /* Ajuste específico para interior-portfolio-section em 768px */
  .interior-portfolio-section .portfolio-container {
    display: block;
    /* Garante que o container se comporte como bloco */
    max-width: 95%;
    /* Ajusta a largura para mobile */
    padding: 0 16px;
    /* Adiciona padding interno para mobile */
  }

  .interior-portfolio-section .portfolio-grid {
    grid-template-columns: 1fr;
    /* Força uma coluna em telas menores para melhor visualização */
    gap: 16px;
  }

  .portfolio-item {
    height: 500px !important;
    /* aumenta a altura no mobile */
  }

  /* Ajustes para a página food-photography.php em telas <= 768px */
  .image-gallery-section {
    flex-direction: column;
    /* Empilha as imagens verticalmente */
    height: auto;
    /* Altura flexível */
    gap: 24px;
    /* Reduz o espaçamento */
    padding: 0 24px;
    /* Adiciona padding para as bordas */
  }

  .image-gallery-section img {
    width: 100%;
    /* Imagens ocupam a largura total disponível */
    height: 300px;
    /* Altura fixa para as imagens da galeria de duas colunas */
    object-fit: cover;
  }

  .video-medium {
    width: 100%;
    /* Ocupa a largura total */
    height: auto;
    /* Mantém a proporção */
  }

  .two-images-section {
    padding: 0 24px;
    /* Remove padding lateral excessivo */
  }

  .two-images-container {
    flex-direction: column;
    /* Empilha as imagens verticalmente */
    align-items: center;
    /* Centraliza as imagens */
  }

  .image-left,
  .image-right {
    width: 100%;
    /* Ocupa a largura total disponível */
    height: 400px;
    /* Altura padrão para as imagens lado a lado */
  }

  .three-images-section {
    margin-left: 0;
    /* Remove o ajuste de margem negativo */
    width: 100%;
    /* Ocupa a largura total */
    padding: 0 24px;
    /* Adiciona padding */
  }

  .three-images-container {
    flex-direction: column;
    /* Empilha as imagens verticalmente */
    gap: 16px;
    /* Ajusta o espaçamento */
  }

  .image-item {
    height: 280px;
    /* Altura padrão para os itens de 3 imagens em mobile */
  }

  /* Ajustes para What We Deliver (Lista) em telas <= 768px */
  .layout-side-by-side .container {
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
    padding: 0 24px;
  }

  .layout-side-by-side .main-title {
    font-size: 48px !important;
    text-align: center;
  }

  .layout-side-by-side .title-description {
    text-align: center;
    max-width: 100%;
  }

  .title-description-layout ul {
    font-size: 16px;
    /* Ajusta o tamanho da fonte da lista */
    width: 90%;
    /* Ajusta a largura da lista */
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    list-style-position: inside;
    /* Garante que os marcadores fiquem dentro da lista */
    padding-left: 0;
    /* Remove padding extra da lista */
  }

  .title-description-layout ul li::before {
    left: 0;
    /* Alinha o bullet */
    top: 0;
    /* Reinicia a posição top */
    transform: none;
    /* Remove transformação se houver */
    position: static;
    /* O bullet se comporta como parte do fluxo do texto */
    margin-right: 8px;
    /* Espaço entre bullet e texto */
  }

  .what-you-get-list ul li,
  .what-we-deliver-list ul li,
  .title-description-layout ul li {
    font-size: 1rem !important;
  }

  /* No mobile, as imagens ficarão empilhadas verticalmente, uma após a outra */
  .portfolio-grid {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 0;
    /* Espaçamento entre os itens do grid */
  }

  .portfolio-item {
    width: 100%;
    height: 500px !important;
    /* Altura um pouco menor em telas muito pequenas */
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-description {
    font-size: 16px;
  }

  .cta-button-large {
    padding: 18px 48px;
    font-size: 16px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .reviews-section {
    padding: 80px 24px;
  }

  .reviews-title {
    font-size: 28px;
  }

  .reviews-subtitle {
    font-size: 16px;
    margin-bottom: 60px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .review-item {
    padding: 32px 24px;
  }

  .reviews-highlight {
    font-size: 24px;
    margin-top: 32px;
  }

  /* Ajustes para a página Vacation Home Photography em telas <= 768px (Mobile) */
  .vacation-portfolio-section .portfolio-grid {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 0;
    /* Certifique-se de que não haja gap extra */
  }

  .vacation-portfolio-section .portfolio-item {
    width: 100%;
    height: 500px !important;
    /* Altura um pouco menor em telas muito pequenas */
  }
}

/* Telas muito pequenas (celular) - max-width: 480px */
@media (max-width: 480px) {
  .header-content {
    padding: 0 16px;
  }

  .section-padding {
    padding: 64px 16px 0px;
  }

  .services-section {
    padding: 80px 16px;
  }

  .services-grid {
    gap: 24px;
  }

  .service-card .service-image {
    height: 300px;
  }

  .service-content {
    padding: 24px 8px;
  }

  .service-title {
    font-size: 28px;
  }

  .logos-section {
    padding: 64px 0;
  }

  .process-section {
    padding: 64px 16px;
  }

  .process-step {
    gap: 16px;
  }

  .process-icon {
    width: 38px;
    height: 38px;
  }

  .process-step-content h3 {
    font-size: 18px;
  }

  .portfolio-section {
    padding: 0px 16px;
    margin-top: -40px;
  }

  .portfolio-grid {
    gap: 16px;
    grid-template-columns: 1fr;
    /* Força 1 coluna em telas muito pequenas */
  }

  .portfolio-item.large,
  .portfolio-item.medium,
  .portfolio-item.small {
    grid-column: span 1;
    height: 300px;
  }

  .cta-section {
    padding: 30px 16px;
  }

  .get-in-touch {
    padding: 20px 0;
  }

  .contact-section {
    padding: 48px 16px;
  }

  .contact-wrapper {
    gap: 40px;
  }

  .contact-info h3,
  .contact-info p {
    font-size: 32px;
  }

  .reviews-section {
    padding: 60px 16px;
  }

  .reviews-title {
    font-size: 24px;
  }

  .reviews-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .review-item {
    padding: 20px 12px;
  }

  .review-text {
    font-size: 14px;
  }

  /* Ajuste específico para interior-portfolio-section em 480px */
  .interior-portfolio-section .portfolio-container {
    padding: 0 10px;
    /* Ajusta o padding para telas menores */
  }

  .portfolio-item {
    height: 400px !important;
    /* ainda mais alto em telas pequenas */
  }

  /* Ajustes para a página food-photography.php em telas <= 480px */
  .image-gallery-section {
    gap: 16px;
    /* Reduz ainda mais o espaçamento */
    padding: 0 16px;
  }

  .image-gallery-section img {
    height: 500px !important;
    /* Altura um pouco menor */
  }

  .two-images-section {
    padding: 0 16px;
  }

  .two-images-container {
    gap: 16px;
  }

  .image-left,
  .image-right {
    height: 350px;
    /* Altura um pouco menor */
  }

  .three-images-section {
    padding: 0 16px;
  }

  .three-images-container {
    gap: 8px;
  }

  .image-item {
    height: 500px !important;
    /* Altura um pouco menor */
  }

  .title-description-layout ul {
    width: 98%;
    /* Ajusta a largura para telas menores */
    padding: 0 10px;
    /* Adiciona padding */
  }

  /* No mobile, as imagens ficarão empilhadas verticalmente, uma após a outra */
  .portfolio-grid {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 0;
    /* Espaçamento entre os itens do grid */
  }

  .portfolio-item {
    width: 100%;
    height: 500px !important;
    /* Altura um pouco menor em telas muito pequenas */
  }

  .reviews-section {
    padding: 60px 16px;
    /* Reduz o padding da seção de reviews */
  }

  .reviews-title {
    font-size: 24px;
    /* Ajusta o tamanho do título de reviews */
  }

  .reviews-subtitle {
    font-size: 14px;
    /* Ajusta o tamanho do subtítulo de reviews */
    margin-bottom: 40px;
  }

  .review-item {
    padding: 20px 12px;
  }

  .review-text {
    font-size: 14px;
  }

  .get-in-touch {
    font-size: 4rem !important;
    padding: 20px 0;
  }

  .contact-section {
    padding: 64px 16px;
  }

  .contact-info h3,
  .contact-info p {
    font-size: 28px;
  }
  
  .contact-info {
    justify-content: center !important;
  }

  .footer-contact h3,
  .footer-section h4 {
    font-size: 20px;
  }

  .footer-container {
    gap: 24px;
  }

  .footer-bottom {
    padding-top: 24px;
    gap: 16px;
  }
}