/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background-color: #000;
  line-height: 1.6;
  overflow-x: hidden;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.hero-content {
  z-index: 1;
  padding: 2rem;
  animation: fadeIn 2s ease-out;
  max-width: 90vw;
}

.title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: clamp(1px, 0.2vw, 2px);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
}

.subtitle {
  font-size: clamp(1rem, 3vw, 1.8rem);
  margin: 1rem 0 2rem 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.btn {
  display: inline-block;
  background: #ffffffcc;
  color: #000;
  padding: clamp(0.6rem, 2vw, 0.8rem) clamp(1rem, 3vw, 1.5rem);
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 30px;
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 0.5px;
}

.btn:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.intro, .gallery {
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.intro h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  color: #fff;
}

.intro p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #ccc;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.gallery-item {
  background: #111;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.gallery-item strong {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: #fff;
  display: block;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.gallery-item p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

footer {
  background: #111;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2rem);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: #888;
  border-top: 1px solid #333;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Navegação flutuante sobre o vídeo - RESPONSIVA */
.main-nav {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: clamp(0.8rem, 3vw, 1.5rem);
  background: rgba(0, 0, 0, 0.4);
  padding: clamp(0.6rem, 2vw, 0.8rem) clamp(1rem, 4vw, 2rem);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 95vw;
  margin: 0 auto;
}

.nav-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: clamp(0.4rem, 1.5vw, 0.5rem) clamp(0.6rem, 2vw, 1rem);
  transition: all 0.3s ease;
  border-radius: 30px;
  font-size: clamp(0.8rem, 2vw, 1rem);
  white-space: nowrap;
  text-align: center;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Profile image responsiva */
.profile-img {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.profile-img img {
  width: clamp(200px, 40vw, 350px);
  height: clamp(200px, 40vw, 350px);
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Reel section responsiva */
.reel-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(2rem, 6vw, 4rem) 1rem;
  background-color: #000000;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

/* Language switcher responsivo */
.language-switcher,
#language-selector {
  position: fixed;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 8px;
  z-index: 1000;
}

.language-switcher button,
.language-switcher img,
#language-selector img {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  padding: 4px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: clamp(25px, 5vw, 35px);
  height: auto;
}

.language-switcher button:hover,
.language-switcher img:hover,
#language-selector img:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 1);
}

/* Contact form responsiva */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.contact-form input,
.contact-form textarea {
  background: #111;
  border: 1px solid #444;
  color: #fff;
  padding: clamp(0.8rem, 2vw, 1rem);
  font-size: clamp(0.9rem, 2vw, 1rem);
  border-radius: 8px;
  resize: vertical;
  transition: border 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Media Queries específicas */

/* Tablets em modo paisagem e desktops pequenos */
@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
  }
  
  .main-nav {
    gap: 2rem;
    padding: 1rem 2.5rem;
    flex-wrap: nowrap;
  }
  
  .gallery-item {
    padding: 2.5rem;
  }
}

/* Desktops médios e grandes */
@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: 1fr;
    max-width: 1000px;
  }
  
  .hero-content {
    padding: 3rem;
  }
  
  .main-nav {
    top: 30px;
    gap: 2.5rem;
    padding: 1rem 3rem;
  }
  
  .title {
    font-size: 6rem;
  }
  
  .subtitle {
    font-size: 1.8rem;
  }
}

/* Dispositivos móveis - Portrait */
@media (max-width: 767px) {
  .main-nav {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    max-width: calc(100vw - 20px);
    padding: 0.6rem 0.8rem;
    gap: 0.5rem;
    border-radius: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-link {
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
    white-space: nowrap;
    min-width: auto;
  }
  
  .hero {
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
  }
  
  .hero-content {
    margin-top: 0;
    padding: 1rem;
    padding-top: 6rem;
  }
  
  .gallery-item {
    padding: 1.5rem;
  }
  
  .intro, .gallery {
    padding: 2rem 1rem;
  }
  
  /* Ajustes para evitar sobreposição com seletor de idiomas */
  #language-selector {
    top: 70px;
    right: 10px;
  }
}

/* Dispositivos móveis em modo paisagem */
@media (max-width: 768px) and (orientation: landscape) {
  .main-nav {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 0.8rem;
    gap: 0.8rem;
    background: rgba(0, 0, 0, 0.8);
    max-width: calc(100vw - 20px);
    border-radius: 20px;
  }
  
  .nav-link {
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
  }
  
  .hero-content {
    margin-top: 0;
    padding-top: 4rem;
  }
  
  .title {
    font-size: clamp(2rem, 6vw, 4rem);
  }
  
  #language-selector {
    top: 50px;
    right: 10px;
  }
}

/* Dispositivos móveis pequenos */
@media (max-width: 480px) {
  .main-nav {
    max-width: calc(100vw - 10px);
    padding: 0.5rem 0.6rem;
    gap: 0.3rem;
    top: 5px;
  }
  
  .nav-link {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
    border-radius: 15px;
  }
  
  .hero-content {
    padding-top: 5rem;
  }
  
  .title {
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
  }
  
  .subtitle {
    margin-bottom: 1.5rem;
  }
  
  .gallery-item {
    padding: 1.2rem;
  }
  
  .contact-form {
    padding: 0 0.8rem;
  }
  
  /* Language selector mais compacto */
  #language-selector {
    top: 60px;
    right: 5px;
    gap: 5px;
  }
  
  #language-selector img {
    width: 22px;
    padding: 2px;
  }
}

/* Dispositivos móveis muito pequenos */
@media (max-width: 360px) {
  .main-nav {
    max-width: calc(100vw - 5px);
    padding: 0.4rem 0.5rem;
    gap: 0.2rem;
    top: 5px;
    border-radius: 20px;
  }
  
  .nav-link {
    font-size: 0.65rem;
    padding: 0.25rem 0.4rem;
    border-radius: 12px;
  }
  
  .hero-content {
    padding-top: 4.5rem;
  }
  
  .language-switcher,
  #language-selector {
    top: 55px;
    right: 5px;
  }
  
  .language-switcher img,
  #language-selector img {
    width: 20px;
    padding: 2px;
  }
  
  .intro, .gallery {
    padding: 1.5rem 0.5rem;
  }
}
 .footer-gif {
      max-width: 100px;
      height: auto;
      border-radius: 8px;
    }