/* ===================================
   RESET & BASE
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ===================================
   NAVEGAÇÃO
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 20px 0;
  transition: padding 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #d4a574;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 29px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: -2px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  text-align: center;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  padding: 0;
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: #fafafa;
  color: #d4a574;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.social-icon {
  color: #1a1a1a;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #d4a574;
}

.search-btn {
  background: transparent;
  border: 1px solid #1a1a1a;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
}

.search-btn:hover {
  background: #1a1a1a;
  color: #fff;
}

/* ===================================
   MENU HAMBURGUER
   =================================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Menu Mobile */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 100px 30px 40px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.nav-menu-mobile {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 0;
  margin: 0;
}

.nav-menu-mobile li {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-menu-mobile a {
  display: block;
  padding: 16px 0;
  font-size: 14px;
  width: 100%;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu-mobile a:hover {
  color: #0066cc;
}

.mobile-menu .dropdown-menu {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  border: none;
  margin-top: 0;
  background: #f8f8f8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  list-style: none;
  padding: 0;
}

.mobile-menu .dropdown.active .dropdown-menu {
  max-height: 300px;
}

.mobile-menu .dropdown-menu li {
  border-bottom: none;
}

.mobile-menu .dropdown-menu a {
  padding: 12px 20px;
  font-size: 13px;
}

.mobile-menu .dropdown-toggle {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-menu .dropdown-toggle::after {
  content: '▼';
  font-size: 10px;
  transition: transform 0.3s ease;
}

.mobile-menu .dropdown.active .dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-icons-mobile {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  justify-content: center;
}

.nav-icons-mobile .social-icon {
  padding: 10px;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.nav-icons-mobile .social-icon:hover {
  color: #0066cc;
}

/* Responsivo */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .nav-icons {
    display: none;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 280px;
  }
}

/* ===================================
   HERO
   =================================== */
.hero {
  margin-top: 80px;
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.2) 40%,
      rgba(0, 0, 0, 0.1) 70%,
      rgba(0, 0, 0, 0.05) 100%);
}

.hero-content {
  position: absolute;
  bottom: 120px;
  left: 60px;
  color: #fff;
  max-width: 700px;
  z-index: 10;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.3px;
  opacity: 0.95;
}

.hero-logo {
  position: absolute;
  top: 50%;
  right: 76px;
  transform: translateY(-50%);
  z-index: 15;
  opacity: 0.85;
  max-width: 300px;
}

.hero-logo img {
  height: auto;
  max-height: 340px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.hero-logo img:hover {
  opacity: 1;
}

/* ===================================
   PROJETOS
   =================================== */
.projects {
  padding: 0 40px 0px 40px;
  max-width: 1600px;
  margin: 140px auto 60px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-auto-flow: dense;
}
.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #f5f5f5;
}
.project-card.large {
  grid-column: span 2;
  grid-row: span 2;
}
.project-card.tall {
  grid-row: span 2;
}
.project-card.wide {
  grid-column: span 2;
}
.project-image {
  width: 100%;
  height: 100%;
  position: relative;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* --- Sombra que cobre o card inteiro --- */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
/* Ativa o escurecimento ao passar o rato (apenas em PC) */
@media (min-width: 769px) {
  .project-card:hover .project-overlay {
    opacity: 1;
  }
}

/* Mobile: overlay sempre visível */
@media (max-width: 768px) {
  .project-overlay {
    opacity: 1;
  }
  
  .projects {
    padding: 0 20px;
    margin: 80px auto 40px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  /* Remove variações de tamanho em mobile */
  .project-card.large,
  .project-card.tall,
  .project-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* --- Texto no meio --- */
.project-info {
  color: #fff;
  padding: 20px;
  max-width: 80%;
}
.project-info h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.project-info p {
  font-size: 15px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .project-info h3 {
    font-size: 18px;
  }
  .project-info p {
    font-size: 14px;
  }
}


/* ===================================
   CARROSSEL DE PROJETOS
   =================================== */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1330px;
  margin: 0 auto 30px;
  overflow: hidden;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  max-height: 1000px;
  /* Altura maior */
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      transparent 100%);
  padding: 40px;
  color: #fff;
}

.slide-info h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.slide-info p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  opacity: 0.95;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: #d4a574;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:hover svg {
  stroke: #fff;
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke: #1a1a1a;
  transition: stroke 0.3s ease;
}

.slide-counter {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  z-index: 10;
}

/* ===================================
   MINIATURAS DO CARROSSEL
   =================================== */
.carousel-thumbnails {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 25px auto 30px;
  padding: 0 20px;
  max-width: 1330px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #d4a574 #f5f5f5;
}

.carousel-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.carousel-thumbnails::-webkit-scrollbar-track {
  background: #f5f5f5;
}

.carousel-thumbnails::-webkit-scrollbar-thumb {
  background: #d4a574;
}

.thumbnail {
  position: relative;
  min-width: 120px;
  width: 120px;
  height: 80px;
  cursor: pointer;
  overflow: hidden;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 165, 116, 0.5);
}

.thumbnail.active {
  border-color: #d4a574;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.thumbnail:hover img {
  transform: scale(1.1);
}

/* ===================================
   TÍTULO DO PROJETO
   =================================== */
.projects h1 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 40px auto 20px;
  /* Reduz margem inferior */
  padding: 0 20px;
  letter-spacing: -0.5px;
  max-width: 1400px;
  line-height: 1.3;
  display: block;
  width: 100%;
}

/* Remove espaço extra entre h1 e seção de contacto */
.contact {
  margin-top: 0;
  padding-top: 0px;
  /* Controla o espaçamento */
}

/* Responsividade */
@media (max-width: 1024px) {
  .carousel-container {
    max-width: 100%;
    margin-top: 80px;
  }

  .carousel-slide {
    max-height: 550px;
  }

  .projects h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .contact {
    padding-top: 30px;
  }
}

@media (max-width: 768px) {
  .carousel-container {
    max-width: 100%;
    margin-top: 100px;
  }

  .carousel-slide {
    max-height: 400px;
  }

  .projects h1 {
    font-size: 28px;
    padding: 0 20px;
    margin: 30px auto 15px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .contact {
    padding-top: 25px;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    margin-top: 120px;
  }

  .carousel-slide {
    max-height: 300px;
  }

  .projects h1 {
    font-size: 24px;
    margin: 25px auto 10px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
  }

  .carousel-btn svg {
    width: 18px;
    height: 18px;
  }

  .contact {
    padding-top: 20px;
  }
}

/* ===================================
   SOBRE
   =================================== */
.about {
  padding: 120px 0;
  background: #fafafa;
  position: relative;
  z-index: 1;
}

.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-text h2 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}

.about-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 24px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat .number {
  font-size: 56px;
  font-weight: 300;
  color: #1a1a1a;
  letter-spacing: -1px;
}

.stat .label {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #999;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===================================
   CONTACTO
   =================================== */
.contact {
  padding: 25px 0;
  padding-bottom: 50px;
  background: #f8f8f8;
}

.contact h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 80px;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.info-block h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d4a574;
}

.info-block p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.info-block a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-block a:hover {
  color: #d4a574;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  position: relative;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: inherit;
  background: white;
  transition: border-color 0.3s ease;
  color: #1a1a1a;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d4a574;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  padding: 16px 48px;
  background: #d4a574;
  color: #fff;
  border: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  width: fit-content;
  margin-top: 8px;
}

.submit-btn:hover {
  background: #c49564;
}

/* ===================================
   PAGINAÇÃO
   =================================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0px 0;
  background-color: #fafafa;
  font-family: 'Poppins', sans-serif;
}

.page-item,
.page-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background-color: #fff;
  border: 1px solid #ccc;
  color: #555;
  font-size: 15px;
  transition: all 0.3s ease;
  user-select: none;
}

.page-number.active {
  background-color: #d4a574;
  color: white;
  border-color: #d4a574;
  font-weight: 600;
  transform: scale(1.1);
}

.page-item:hover,
.page-number:hover {
  background-color: #e9f2ff;
  border-color: #d4a574;
  color: #d4a574;
}

.page-numbers {
  display: flex;
  gap: 8px;
}

.page-item.prev,
.page-item.next {
  font-size: 18px;
  width: 40px;
  height: 40px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  padding: 40px 0;
  background: #1a1a1a;
  color: #fff;
  margin-top: auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 8px;
  color: #d4a574;
}

.footer p {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;

}

.footer p a {
  text-decoration: none;
  color: #d4a574;
}

/* ===================================
   Obrigado Page
   =================================== */

/* Container principal centralizado */
.obrigado-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

/* Título grande no meio */
.obrigado-titulo {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

/* Botão de voltar */
.obrigado-botao {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2rem;
  text-decoration: none;
  color: white;
  background-color: #1a1a1a;
  transition: background-color 0.3s ease;
}

.obrigado-botao:hover {
  background-color: #d4a574;
}


/* ===================================
   SCROLLBAR
   =================================== */
::-webkit-scrollbar {
  display: none;
}

/* ===================================
   RESPONSIVO
   =================================== */
@media (max-width: 1200px) {

  .container,
  .nav-container {
    padding: 0 40px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .project-card.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .hero-content {
    left: 40px;
    bottom: 100px;
  }

  .hero-logo {
    right: 40px;
    max-width: 250px;
  }

  .hero-logo img {
    max-height: 280px;
  }

  .contact-grid {
    gap: 60px;
  }
}

@media (max-width: 900px) {

  /* Mostrar hamburguer */
  .hamburger {
    display: flex;
  }

  /* Esconder menu desktop */
  .nav-menu {
    display: none;
  }

  .nav-icons {
    display: none;
  }

  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .about-text h2,
  .contact h2 {
    font-size: 36px;
  }

  .hero-logo {
    max-width: 200px;
  }

  .hero-logo img {
    max-height: 220px;
  }
}

@media (max-width: 768px) {

  .container,
  .nav-container {
    padding: 0 24px;
  }

  .hero {
    height: 70vh;
    margin-top: 70px;
  }

  .hero-content {
    left: 24px;
    bottom: 60px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-logo {
    display: none;
  }

  .filters {
    margin-top: 80px;
    padding: 20px;
  }

  .filter-main {
    gap: 20px;
  }

  .projects {
    padding: 0 20px 0px 20px;
    margin: 0px auto;
    margin-top: 100px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .project-card.large,
  .project-card.tall,
  .project-card.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .about,
  .contact {
    padding: 80px 20px;
  }

  .contact-grid {
    padding: 0;
  }

  .about-stats {
    gap: 40px;
  }

  .stat .number {
    font-size: 48px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }

  .slide-overlay {
    padding: 24px;
  }

  .slide-info h3 {
    font-size: 14px;
  }

  .slide-info p {
    font-size: 14px;
  }

  .slide-counter {
    top: 10px;
    right: 10px;
    font-size: 11px;
    padding: 6px 12px;
  }

  /* Ajustar menu mobile para telas pequenas */
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
}