/* --- Fontes Personalizadas --- */
@font-face {
  font-family: "Uncage";
  src: url("fonts/Uncage-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
.brand-color {
  color: #d90f81;
  font-weight: bold;
}
@font-face {
  font-family: "Urbanist";
  src: url("fonts/Urbanist-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Urbanist";
  src: url("fonts/Urbanist-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #1e1e1e;
  color: white;
  overflow-x: hidden;
  padding-top: 100px;
}

@media (max-width: 991px) {
  body {
    padding-top: 80px;
  }
}

html {
  scroll-behavior: smooth;
}

/* MELHORIA: Container ligeiramente mais flexível */
.container {
  max-width: 1200px;
  width: 90%; /* Adapta-se melhor a telas muito pequenas */
  margin: 0 auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1e1e1e;
}

::-webkit-scrollbar-thumb {
  background: #d90f81;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e31a94;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  color: #d90f81;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.loading-bar {
  width: 64px;
  height: 4px;
  background-color: #d90f81;
  border-radius: 2px;
  margin: 0 auto;
  animation: pulse 2s infinite;
}

/* Animações */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animated-element {
  opacity: 0;
  transform: translateY(32px);
  transition: all 1s ease-out;
}

.animated-element.visible {
  opacity: 1;
  transform: translateY(0);
}
.main-header {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 1000;
  background-color: rgba(17, 17, 17, 0.85);
  border-radius: 20px;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}
.header-inner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  height: 50px;
  width: auto;
  transition: var(--transition);
}
.desktop-nav {
  display: none;
}
@media (min-width: 992px) {
  .desktop-nav {
    display: block;
  }
}
.desktop-nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-montserrat);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.25rem 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  transition: width 0.3s ease-out;
}
.nav-link:hover,
.nav-item-dropdown:hover .nav-link {
  color: var(--primary-color);
}
.nav-link:hover::after,
.nav-item-dropdown:hover .nav-link::after {
  width: 100%;
}
.nav-item-dropdown {
  position: relative;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.dropdown-arrow {
  font-size: 0.7em;
  transition: transform 0.3s ease;
}
.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #1f1f1f;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  min-width: 280px;
  padding: 10px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
  pointer-events: none;
}
.dropdown-menu.show-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--white);
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.dropdown-item:hover {
  background-color: var(--primary-color);
  transform: translateX(5px);
}
.dropdown-item img {
  height: 35px;
  width: 35px;
  object-fit: contain;
  flex-shrink: 0;
}
.dropdown-item div {
  flex-grow: 1;
}
.dropdown-item h4 {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}
.dropdown-item p {
  font-size: 0.8rem;
  color: #ccc;
  margin: 0;
  line-height: 1.3;
}
.dropdown-external-icon {
  margin-left: auto;
  color: #888;
  font-size: 0.8rem;
}
.dropdown-item:hover .dropdown-external-icon {
  color: var(--white);
}
.btn-contato {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 25px;
  font-family: var(--font-montserrat);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  display: none;
}
.btn-contato:hover {
  background-color: #b90e70;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
@media (min-width: 992px) {
  .btn-contato {
    display: inline-block;
  }
}
.mobile-menu-toggle {
  display: none;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.5rem;
}
@media (max-width: 991.98px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-nav-menu {
  max-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: rgba(25, 25, 25, 0.98);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-top: 0.5rem;
}
.mobile-nav-menu.open {
  max-height: calc(100vh - 100px);
  padding: 1rem 0;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
}
.mobile-nav-link {
  padding: 0.8rem 0;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-montserrat);
  font-size: 1.2rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.mobile-dropdown-toggle .dropdown-arrow {
  transition: transform 0.3s ease;
}
.mobile-nav-item-dropdown.open-mobile .dropdown-arrow {
  transform: rotate(180deg);
}
.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  padding-left: 1rem;
  border-left: 2px solid var(--primary-color);
  margin-top: 0.5rem;
  margin-left: 0.5rem;
}
.mobile-nav-item-dropdown.open-mobile .mobile-dropdown-menu {
  max-height: 500px;
}
.mobile-dropdown-item {
  display: block;
  padding: 0.75rem 0.5rem;
  color: #ccc;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-dropdown-item:hover {
  color: var(--primary-color);
}
.mobile-dropdown-item i.fa-fw {
  margin-right: 10px;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}
.btn-mobile-contact {
  background-color: var(--primary-color);
  color: var(--white) !important;
  text-align: center;
  margin-top: 1rem;
  border-radius: 25px;
  font-weight: 600;
  border-bottom: none !important;
}
/* Hero Section (Corrigido) */
.hero {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 50%, #1e1e1e 100%);
}
.decorative-element {
  position: absolute;
  border-radius: 50%;
  animation: pulse 4s infinite ease-in-out;
}
.decorative-1 {
  top: 25%;
  right: 25%;
  width: 128px;
  height: 128px;
  background-color: rgba(217, 15, 129, 0.1);
  filter: blur(40px);
}
.decorative-2 {
  bottom: 25%;
  left: 25%;
  width: 96px;
  height: 96px;
  background-color: rgba(217, 15, 129, 0.05);
  filter: blur(30px);
  animation-delay: 2s;
}
.hero-content {
  display: grid;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 10;
  padding-top: 5rem;
}
@media (min-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 3rem;
  }
}
.hero-title-1,
.hero-title-2 {
  font-weight: 900;
  line-height: 0.9;
  /* MELHORIA: Tipografia Fluida. Adapta-se suavemente ao tamanho da tela. */
  font-size: clamp(3.5rem, 12vw, 8rem);
}
.hero-title-1 {
  color: white;
  margin-bottom: 0.5rem;
}
.hero-title-2 {
  color: #d90f81;
  margin-bottom: 1.5rem;
}
.hero-description p {
  line-height: 1.6;
  color: white;
  max-width: 500px;
  margin: 0 auto;
  /* MELHORIA: Tipografia Fluida para parágrafos. */
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}
@media (min-width: 992px) {
  .hero-description p {
    margin: 0;
  }
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  color: white;
}

/* Team Section (Corrigido) */
.team-section {
  background-color: #1e1e1e;
  /* MELHORIA: Espaçamento vertical fluido. */
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.team-bg-decoration {
  position: absolute;
  left: -256px;
  top: 25%;
  width: 752px;
  height: 752px;
  opacity: 0.2;
  background-size: cover;
  background-position: center;
}
/* MELHORIA: Controla o espaço entre os cards, substituindo os <br> */
.team-container {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}
.team-member {
  /* margin-bottom removida para usar o 'gap' do container */
}
.member-card {
  background-color: #2c2c2c;
  border-radius: 45px;
  /* MELHORIA: Espaçamento interno fluido. */
  padding: clamp(1.5rem, 5vw, 3rem);
  transition: all 0.4s ease;
  display: grid;
  grid-template-columns: 1fr; /* Mobile-first: uma coluna por padrão */
  gap: 2rem;
  align-items: center;
}
/* Muda para duas colunas em telas maiores */
@media (min-width: 992px) {
  .member-card {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
  }
}
.member-card:hover {
  background-color: #383838;
  transform: translateY(-10px) scale(1.02);
}
.member-image-container {
  display: flex;
  justify-content: center;
}
/* MELHORIA: Imagem 100% responsiva, mantendo a proporção. */
.member-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 320 / 500; /* Mantém a proporção da imagem original */
}
.gradient-border {
  position: absolute;
  inset: 0;
  border-radius: 160px;
  background: #d90f81;
  padding: 8px;
}
.image-container {
  width: 100%;
  height: 100%;
  border-radius: 160px;
  background-color: #3f3b3b;
  overflow: hidden;
  position: relative;
}
.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.member-card:hover .member-image {
  transform: scale(1.1);
}
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 33.333%;
  background: linear-gradient(to top, rgba(225, 15, 134, 0.5), transparent);
  transition: opacity 0.5s ease;
}
.position-badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #d90f81;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
}
.position-badge span {
  color: white;
  font-weight: 900;
  font-size: clamp(0.9rem, 2vw, 1.125rem);
}
.member-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center; /* Centralizado no mobile */
}
@media (min-width: 992px) {
  .member-content {
    text-align: left; /* Alinhado à esquerda no desktop */
  }
}
.member-name {
  color: #d90f81;
  font-weight: 900;
  margin-bottom: 0;
  transition: color 0.3s ease;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
}
.member-card:hover .member-name {
  color: #e31a94;
}
.member-description {
  color: #e0e0e0;
  line-height: 1.6;
  transition: color 0.3s ease;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}
.member-card:hover .member-description {
  color: #ffffff;
}
.member-social-links {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
  justify-content: center;
}
@media (min-width: 992px) {
  .member-social-links {
    justify-content: flex-start;
  }
}
.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #d90f81;
  color: white;
  font-size: 1.3rem;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.social-icon-btn:hover {
  background-color: #c50d71;
  transform: translateY(-3px);
}
/* === FIM DAS SEÇÕES CORRIGIDAS === */

/* --- Footer (CÓDIGO ORIGINAL MANTIDO) --- */
.footer-logo {
  height: 50px;
  width: auto;
}
@media (min-width: 768px) {
  .footer-logo {
    height: 60px;
  }
}
.main-footer {
  position: relative;
  background-color: #111111;
  padding: 1.5rem 1rem;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .main-footer {
    padding: 2rem 2rem;
    margin-top: 5rem;
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
  }
}
.footer-container {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.footer-logo-wrapper {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-logo-wrapper {
    justify-content: flex-start;
  }
}
.footer-contact-info,
.footer-social-media {
  text-align: center;
}
@media (min-width: 768px) {
  .footer-social-media {
    text-align: right;
  }
}
.footer-heading {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer-heading {
    font-size: 1.5rem;
  }
}
.footer-text {
  color: white;
  font-size: 1rem;
}
.footer-text p {
  margin-bottom: 0.5rem;
}
.footer-text p:last-child {
  margin-bottom: 0;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .social-icons {
    justify-content: flex-end;
  }
}
.social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .social-link {
    width: 3rem;
    height: 3rem;
  }
}
.social-link:hover {
  transform: scale(1.1);
}
.social-icon {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}
.footer-divider {
  border-top: 1px solid #4b5563;
  padding-top: 1.5rem;
}
.footer-copyright {
  text-align: center;
}
.footer-copyright p {
  color: white;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .footer-copyright p {
    font-size: 1rem;
  }
}

/* Removido as media queries redundantes, pois a lógica foi integrada acima */
/* Mantidos apenas os estilos que não foram integrados */

/* Animações de entrada específicas */
.animated-element[data-delay="200"] {
  transition-delay: 0.2s;
}
.animated-element[data-delay="400"] {
  transition-delay: 0.4s;
}
.animated-element[data-delay="600"] {
  transition-delay: 0.6s;
}
.animated-element[data-delay="800"] {
  transition-delay: 0.8s;
}
.animated-element[data-delay="1000"] {
  transition-delay: 1s;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  background-color: #1da851;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.whatsapp-icon-fa {
  line-height: 1;
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}

.footer-link-contact {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-link-contact:hover {
  color: #d90f81;
  opacity: 0.8;
}
