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

html, body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(to bottom, #1a1a1a 0%, #111 60%, #000 100%);
  background-attachment: fixed;
  background-size: cover;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  overflow-x: hidden;
}

/* Header */
header {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  position: fixed;
  top: 0;
  z-index: 999;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.logo img {
  height: 50px;
}

/* NAV DESKTOP */
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #eb1471;
  transition: width 0.3s ease;
  text-shadow: none;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #eb1471;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  background-color: #111;
}

.desktop-nav li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
    text-shadow: none;

}

.desktop-nav li a:hover {
  background-color: #fee8f2;
  color: #eb1471;
}


/* NAV MOBILE */
.mobile-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.mobile-menu-icon div {
  width: 28px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #1b1b1b;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;

}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav ul li {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.mobile-nav.active ul li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active ul li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav.active ul li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav.active ul li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav.active ul li:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav ul {
  list-style: none;
  padding: 0;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.8em;
  margin: 15px 0;
  font-weight: 600;
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: #eb1471;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2em;
  color: white;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

.mobile-close:hover {
  color: #eb1471;
}

/* Botão Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.mobile-toggle span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 2px;
}

/* Mostrar apenas em mobile */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
}
/* Conteúdo principal */
.main-content {
  padding-top: 100px;
  min-height: 80vh;
  padding: 40px 20px;
}

/* Footer */
.footer {
  
  color: white;
  padding: 40px 20px;
  font-size: 0.9em;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer a {
  color: #eb1471;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Calendly embed */
.calendly-container {
  background-color: #1b1b1b;
  text-align: center;
}

.calendly-container h2 {
  color: #eb1471;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.calendly-container p {
  font-size: 1em;
  margin-bottom: 20px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-icon {
    display: flex;
  }

  .footer {
  padding: 20px 10px;
}

.footer-container {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.footer-column {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.footer-column ul {
  padding-left: 0;
  list-style-position: inside;
}

.footer-column ul li {
  list-style-type: none;
  margin-bottom: 2px;
}

.footer-column ul li::before {
  content: "• ";
  color: white;
  margin-right: 4px;
}
}




.transition-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.transition-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.transition-screen img {
  width: 120px;
  height: auto;
  transition: opacity 0.8s ease;
}

@keyframes fadeLogo {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}



/* Hero Section */
.hero-section {
  position: relative;
  padding: 100px 0;      /* só top/bottom */
  text-align: center;
  overflow: hidden;
  width: 100vw;           /* ocupa toda a largura da viewport */
  left: 50%;              /* move para o meio da viewport */
  transform: translateX(-50%);  /* alinha à esquerda da viewport */
}

/* Overlay escuro */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.642);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.05);
  z-index: 0;
}

/* Conteúdo por cima de tudo */
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.btn-primary {
  display: inline-block;
  border: 1px solid #eb1471;
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-shadow: none !important;
}
.btn-primary:hover {
  background-color: #eb1471;
  color: rgb(0, 0, 0);
}

/* Services Section */
/* ———————————————————————————————————— */
/* Services Section (texto sobre imagem) */
/* ———————————————————————————————————— */

.services-section {
  padding: 80px 0;
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 340px));
  justify-content: center;
  gap: 20px;
}

/* Services Section */
.services-section {
  padding: 80px 0;
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 340px));
  justify-content: center;
  gap: 20px;
}

/* Services Section */
.services-section {
  padding: 80px 0;
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 340px));
  justify-content: center;
  gap: 20px;
}

/* Cartão */
.service-item {
  position: relative;           /* para o overlay funcionar */
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* Imagem com proporção 4:5 e escurecida levemente */
.service-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: brightness(0.7);
  transition: filter 0.3s ease;
}

/* Escurecer mais ao hover (opcional) */
.service-item:hover img {
  filter: brightness(0.6);
}

/* Wrapper do texto que fica SEMPRE em cima da imagem */
.service-item .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  pointer-events: none;  /* não bloqueia o hover */

  /* fundo semi-transparente + vidro fosco */
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1px);
  z-index: 1;
}

/* Títulos e descrições dentro do overlay */
.service-item .overlay h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  position: relative;
  z-index: 2;
}

/* Linha dourada debaixo do título */
.service-item .overlay h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #eb1471;
  margin: 8px auto 0;
  border-radius: 2px;
}

.service-item .overlay p {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: #eee;
  max-width: 90%;
  z-index: 2;
}

/* Lift effect no cartão */
.service-item:hover {
  transform: translateY(-5px);
}


/* botão “Agendar Reunião” abaixo dos cartões */
.services-cta {
  text-align: center;
  margin-top: 40px;
}

.services-cta .btn-primary {
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 5px;
  background-color: #eb1471;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.services-cta .btn-primary:hover {
  background-color: #e43a84;
  color: black;
  transition: all 0.3s ease;

  ;
}

/* Trabalhos Recentes Slider */
.portfolio-section {
  padding: 80px 0;
}
.portfolio-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

/* — Portfolio Slider 16:9 com Overlay e Títulos — */
.slider-wrapper {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.slides {
  display: flex;
  height: 100%;
  transition: transform 2s ease-in-out;
}

.slide {
  display: block;
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  text-decoration: none;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay escuro + blur por cima da imagem */
.slide-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Título sobre o overlay */
.slide-overlay h3 {
  margin: 0;
  color: #fff;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Setas */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 2;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.slider-arrow:hover {
  background: rgba(0,0,0,0.7);
}
.slider-arrow.prev {
  left: 10px;
}
.slider-arrow.next {
  right: 10px;
}

/* Pain Relief Section */
.pain-relief-section {
  
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 80px 0;
}

.pain-relief-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.pain-relief-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.pain-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
}
.pain-list li {
  background-color: #222;
  padding: 20px;
  border-radius: 8px;
  font-size: 1rem;
}
.pain-list li strong {
  color: #eb1471;
}

/* ————— FAQ Accordion ————— */
.faq-section {
  padding: 80px 0;
}
.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 20px;
  border-radius: 8px;
  overflow: hidden;
  background: #222;
}

/* Botão da pergunta */
.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: #333;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

/* Seta + ou – */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

/* Quando aberto, muda para “-” */
.faq-question[aria-expanded="true"]::after {
  content: "–";
}

/* bloco da resposta escondido por padrão */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #1b1b1b;
  transition: max-height 0.5s ease;
}

/* quando a pergunta estiver expanded, a resposta cresce */
.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 200px; /* garante espaço suficiente; ajusta se for preciso */
}

.faq-answer p {
  padding: 16px 20px;
  color: #ccc;
  font-size: 1rem;
  margin: 0;
}

/* Calendário de Agendamento */
.schedule-section {
  
  padding: 80px 0;
}
.schedule-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.schedule-section iframe {
  border: none;
  border-radius: 10px;
  max-width: 800px;
  width: 100%;
  height: 600px;
  display: block;
  margin: 0 auto;
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
}


/* Reduzir o tamanho dos cartões Instagram */
.instagram-grid {
  display: grid;
  /* Colunas mais estreitas: mínimo 180px, máximo 1fr */
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  justify-items: center; /* centra cada cartão dentro da célula */
}

.insta-card {
  position: relative;
  width: 100%;
  max-width: 300px;      /* nunca ultrapassa 200px de largura */
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  margin-bottom: 30px;
}

.insta-card--photo {
  aspect-ratio: 9 / 16;
}

.insta-card--reel {
  aspect-ratio: 9 / 16;
}

.insta-card iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Centralizar títulos e texto introdutório */
#portfolio-social h3 {
  text-align: center;
  font-size: 1.75rem;
  margin: 40px 0 10px;
  color: #fff;
}

#portfolio-social .section-intro {
  text-align: center;
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 20px;
}


/* ================================
   PACKS SECTION - DARK THEME
================================ */

.packs-section {
 padding: 80px 0;
  text-align: center;
}

.packs-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #eb1471;
}

.packs-section .section-intro {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #ccc;
  font-size: 1.1em;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.pack-card {
  background: #1b1b1b;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  color: white;
}

.pack-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(255, 0, 80, 0.2);
}

.pack-card h3 {
  font-size: 1.6rem;
  color: #eb1471;
  margin-bottom: 10px;
  padding-top: 15px;
}

.pack-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.pack-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.pack-card ul li {
  margin-bottom: 10px;
  color: #ccc;
  font-size: 1em;
  padding-left: 20px;
  position: relative;
}

.pack-card ul li::before {
  content: "✓";
  color: #eb1471;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1em;
  text-align: center;
  transition: background 0.3s, color 0.3s, border 0.3s;
}

.btn-primary {
  background: #eb1471;
  color: white;
}

.btn-primary:hover {
  background: #e43a84;
  color: #111;
}

.btn-outline {
  border: 2px solid #eb1471;
  color: #eb1471;
}

.btn-outline:hover {
  background: #eb1471;
  color: #111;
}

.featured {
  border: 2px solid #eb1471;
  box-shadow: 0 16px 32px rgba(255, 0, 80, 0.2);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #eb1471;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  letter-spacing: 1px;
  z-index: 10;
  text-shadow: none;
}

.highlight {
  color: #eb1471 !important;
  font-weight: 600;
}

.pack-note {
  margin-top: 30px;
  font-size: 0.95em;
  color: #aaa;
}

.pack-tagline {
  display: block;
  font-size: 0.9rem;
  color: #999;
  margin-top: 20px;
}


.pack-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pack-buttons .btn-primary,
.pack-buttons .btn-outline {
  flex: 1 1 120px;
  text-align: center;
  text-shadow: none;
}




/* ------------------------------ */
/* TIKTOK PACKS CUSTOM STYLING   */
/* ------------------------------ */

.tiktok-theme h2,
.tiktok-theme h3 {
  color: #a714eb;
}

.tiktok-theme .highlight {
  color: #a714eb !important;
  font-weight: bold;
}

.tiktok-theme .pack-card ul li::before {
  color: #a714eb;
}

.tiktok-theme .pack-card.featured {
  border: 2px solid #a714eb;
  box-shadow: 0 16px 32px rgba(183, 0, 255, 0.2);
}

.tiktok-theme .btn-primary {
  background: #a714eb;
  color: white;
  border: 1px solid #a714eb;
}

.tiktok-theme .btn-primary:hover {
  background: #b946ee;
  color: black;
  border-color: #a714eb;
}

.tiktok-theme .btn-outline {
  color: #b300ff;
  border: 2px solid #b300ff;
}

.tiktok-theme .btn-outline:hover {
  background-color: #b300ff;
  color: white;
}



.popular-badge-tiktok {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #a714eb;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  letter-spacing: 1px;
  z-index: 10;
  text-shadow: none;
}

.tiktok-theme .pack-card:hover {
  box-shadow: 0 16px 32px rgba(183, 0, 255, 0.2);
}


.original-price {
  font-size: 0.9rem;
  color: #aaa;
}


.form-section {
  padding: 80px 0;
  background-color: #0e0e0e;
  color: #fff;
  text-align: center;
}

.form-section h2 {
  font-size: 2em;
  margin-bottom: 40px;
  font-weight: 600;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
  font-size: 1em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid #444;
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 6px;
  font-size: 1em;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border: 1px solid #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button.btn-primary {
  margin-top: 10px;
  align-self: flex-start;
  padding: 14px 30px;
  font-size: 1em;
  cursor: pointer;
}
.contact-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  
  color: #fff;
  border: 1px solid #555;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 1em;

  /* seta personalizada */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px 18px;

  padding-right: 48px; /* espaço para a seta */
  cursor: pointer;

  position: relative;
}

.contact-form select:hover {
  border-color: #888;
  background-color: #181818;
}

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


.stats-section {
  
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.stats-section h2 {
  font-size: 2.2em;
  margin-bottom: 50px;
  font-weight: 700;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(255, 0, 80, 0.2);
}

.stat-item h3 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #eb1471;
  font-weight: 700;
}

.stat-item p {
  font-size: 1em;
  color: #aaa;
}

.stats-disclaimer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1.5rem;
  text-align: center;
}


.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 1rem 0;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Aspect ratios reais e mais coerência no tamanho */
.portfolio-item--vertical {
  width: 220px;
  aspect-ratio: 9 / 16;
}

.portfolio-item--horizontal {
  width: 320px;
  aspect-ratio: 16 / 9;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.portfolio-item:hover img {
  transform: scale(1.03);
}

.portfolio-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  text-align: center;
  padding: 0.5rem;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}


.portfolio-item--4by5 {
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 260px; /* ou ajusta como preferires */
  max-height: 400px;
}

.portfolio-item--16by9 {
  aspect-ratio: 16 / 9;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 1rem 0;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
  border-radius: 12px;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Aspect Ratios personalizados */
.gallery-item--4by5 {
  aspect-ratio: 4 / 5;
  max-width: 260px;
  width: 100%;
}

.gallery-item--16by9 {
  aspect-ratio: 16 / 9;
  max-width: 400px;
  width: 100%;
}

/* Sobre Mim Section */

.about-section {
  position: relative;
  overflow: hidden;
}


.about-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  padding: 6rem 2rem;
  min-height: 90vh; /* ⬅ força a altura a ocupar quase o ecrã todo */
}

.about-left {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.about-left img {
  width: auto;
  height: 100%;
  max-height: 600px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-left img:hover {
  transform: scale(1.04) rotateZ(0.5deg);
  box-shadow: 0 25px 40px rgba(0,0,0,0.6);
}

.about-right {
  flex: 1 1 45%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-right h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #eb1471;
  text-shadow: 0 0 8px #eb1471aa, 0 0 18px #eb1471aa;
  margin-bottom: 0.5rem;
}

.about-right p {
  font-size: 1.1rem;
  color: #f0f0f0;
  line-height: 1.6;
  margin: 0.4rem 0;
}

/* Mobile */
@media (max-width: 768px) {
  .about-hero {
    flex-direction: column;
    padding: 4rem 1.5rem;
    min-height: auto;
  }

 .about-left img {
    width: 220px;
  }

  .about-right {
    text-align: center;
    margin-top: 2rem;
  }

  .about-right h1 {
    font-size: 2.5rem;
  }
}

.about-glow {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  background: radial-gradient(circle at top left, #1a1a1a, #111);
  background-size: cover;
  padding: 6rem 2rem 4rem;
}

.glow-text {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  color: #eb1471;
  text-shadow: 0 0 8px #eb1471aa, 0 0 18px #eb1471aa;
  margin-bottom: 3rem;
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  animation: fadeSlideUp 1s ease-out forwards;
  opacity: 0;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #eb1471, transparent);
  box-shadow: 0 0 10px #eb1471aa;
}

/* Lado direito */
.about-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #eb1471, transparent);
  box-shadow: 0 0 10px #eb1471aa;
}

.about-photo img {
  width: 320px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-photo img:hover {
  transform: scale(1.04) rotateZ(0.5deg);
  box-shadow: 0 25px 40px rgba(0,0,0,0.6);
}

.about-text {
  max-width: 580px;
  font-size: 1.15rem;
  color: #f0f0f0;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 1.4rem;
}

@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }
  .about-photo img {
    width: 90%;
    max-width: 340px;
  }
}


.stats-human-touch {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
  color: white;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.full-width-bg {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.6rem !important;
  }

  h2 {
    font-size: 1.6rem !important;
  }

  h3 {
    font-size: 1.3rem !important;
  }

  p {
    font-size: 0.9rem !important;
  }
}