/* styles.css */
* {
  margin: 0; padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* Keyframes para animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.6);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  0%, 50% {
    border-color: transparent;
  }
  51%, 100% {
    border-color: #ff1493;
  }
}

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

@keyframes cardHover {
  0% {
    transform: scale(1) rotateY(0deg);
  }
  100% {
    transform: scale(1.05) rotateY(5deg);
  }
}

/* Partículas de fundo animadas */
@keyframes particles {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Classe para partículas */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 20, 147, 0.6);
  border-radius: 50%;
  animation: particles 15s linear infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
  width: 6px;
  height: 6px;
}

.particle:nth-child(3) {
  left: 30%;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  left: 40%;
  animation-delay: 6s;
  width: 8px;
  height: 8px;
}

.particle:nth-child(5) {
  left: 50%;
  animation-delay: 8s;
}

.particle:nth-child(6) {
  left: 60%;
  animation-delay: 10s;
  width: 5px;
  height: 5px;
}

.particle:nth-child(7) {
  left: 70%;
  animation-delay: 12s;
}

.particle:nth-child(8) {
  left: 80%;
  animation-delay: 14s;
  width: 7px;
  height: 7px;
}

.particle:nth-child(9) {
  left: 90%;
  animation-delay: 16s;
}

body {
  background: #000;
  color: #fff;
  min-height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 0;
  position: relative;
  overflow-x: hidden;
}

/* Background específico para página index */
body.index-page {
  position: relative;
}

.container.index-container {
  position: relative;
}

.container.index-container::before {
  content: '';
  position: absolute;
  top: 420px!important;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./images/4.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  z-index: -2;
}

.container.index-container::after {
  content: '';
  position: absolute;
  top: 420px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.container {
  width: 90%; 
  max-width: 400px;
}

.profile {
  background-image: url('images/2.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* border-radius: 20px; */
  padding: 2rem 1rem 1rem;
  margin-bottom: 1rem;
  position: relative;

}

.profile2 {
  background-image: url('images/2.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* border-radius: 20px; */
  padding: 0rem 1rem 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.534) 0%, rgb(0, 0, 0) 100%);
  /* border-radius: 20px; */
  z-index: 1;
}

.profile > * {
  position: relative;
  z-index: 2;
}

.profile .avatar {
    width: 230px;
    border-radius: 50%;
    border: 4px solid rgba(255, 20, 147, 0.6);
    object-fit: cover;
    margin-bottom: 1rem;
    height: 230px;
    animation: pulse 3s ease-in-out infinite;
}

.profile .logo {
  width: 100%;
  height: auto;
  margin: 1rem 0 1rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  animation: float 4s ease-in-out infinite;
}

.profile2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #000000d7 5%, #00000094 100%);
  /* border-radius: 20px; */
  z-index: 1;
}

.profile2 > * {
  position: relative;
  z-index: 2;
}

.profile2 .avatar {
    width: 230px;
    border-radius: 50%;
    border: 4px solid rgba(255, 20, 147, 0.6);
    object-fit: cover;
    margin-bottom: 1rem;
    height: 230px;
    animation: pulse 3s ease-in-out infinite;
}

.profile2 .logo {
  width: 100%;
  height: auto;
  margin: 1rem 0 1rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  animation: float 4s ease-in-out infinite;
}

.name {
  font-size: 2.5rem;
  font-weight: 600;
}

.highlight {
  color: #ff1493; /* Deep Pink */
}

.tagline {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid transparent;
  width: 0;
  animation: typewriter 4s steps(40) 1s forwards, blink 1s step-end infinite 5s;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255,20,147,0.2);
  border-radius: 30px;
  text-decoration: none;
  color: #ff1493;
  font-weight: 500;
  transition: all 0.3s ease;
  max-height: 58px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.btn:nth-child(1) { animation-delay: 0.2s; }
.btn:nth-child(2) { animation-delay: 0.4s; }
.btn:nth-child(3) { animation-delay: 0.6s; }
.btn:nth-child(4) { animation-delay: 0.8s; }
.btn:nth-child(5) { animation-delay: 1.0s; }
.btn:nth-child(6) { animation-delay: 1.2s; }
.btn:nth-child(7) { animation-delay: 1.4s; }

.btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

.btn-icon-email {
  width: 64px;
  height: 64px;
  /* border-radius: 6px; */
  object-fit: contain;
  flex-shrink: 0;
}

/* Estilo para SVGs inline */
.btn svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #ff1493;
}

.btn:hover {
  background: rgba(255,20,147,0.4);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
}

/* Rodapé social */
.social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    background-image: url(images/footer.png);
    background-size: 200px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 2rem 1rem;
    margin: 1rem auto 0;
    position: relative;
    min-height: 96px;
    width: 100%;
    max-width: 100vw;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInFromBottom 1s ease forwards 2s;
}

.social::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 50%, rgba(255, 20, 147, 0.1) 100%); */
  /* border-radius: 20px; */
  z-index: 1;
}

.social > * {
  position: relative;
  z-index: 2;
}

.social img {
  width: 28px; height: 28px;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
  transition: all 0.3s ease;
}

.social img:hover {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 8px rgba(255, 20, 147, 0.8));
}



/* Estilo da galeria com Swiper Cards */
.gallery {
  margin-bottom: 4rem;
  margin-top: 2rem;
}

.gallery h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff1493;
}

.swiper {
  width: 320px;
  height: 440px;
  margin: 0 auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 15px 50px rgba(255, 20, 147, 0.3);
  transition: all 0.4s ease;
  cursor: pointer;
}

.swiper-slide:hover {
  transform: scale(1.05) rotateY(5deg);
  box-shadow: 0 25px 60px rgba(255, 20, 147, 0.5);
}

.swiper-slide img,
.swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.swiper-slide video {
  background: #111;
}

p.text {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: #ccc;
  line-height: 1.2rem;
}

/* Vídeo em destaque na página principal */
.featured-video {
  margin: 1.5rem 0;
  text-align: center;
}

.video-title {
  font-size: 1.1rem;
  color: #ff1493;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.bigger{
  width: 48px;
  height: 48px;
  object-fit: contain;

}

.video-subtitle {
  font-size: 0.85rem;
  color: #ccc;
  margin-bottom: 1rem;
  font-style: italic;
}

.video-container {
  position: relative;
  /* border-radius: 20px; */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
  margin-bottom: 1rem;
}

.main-video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  background: #111;
}

/* Slideshow automático */
.auto-slideshow {
  position: relative;
  width: 230px;
  height: 230px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 20, 147, 0.6);
}

.slide-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide-image.active {
  opacity: 1;
}

/* Botão de voltar */
.back-button {
  margin: 1.5rem 0 1rem;
  text-align: center;
}

.btn-back {
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Galeria Swiper com efeito Flip */
.gallery-flip {
  margin: 1.5rem 0;
  width: 100%;
}

.swiper-flip {
  width: 100%;
  height: 80vh; /* 80% da altura da tela no mobile */
  max-height: 600px;
  max-width: 380px;
  margin: 0 auto;
}

.swiper-flip .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 15px 50px rgba(255, 20, 147, 0.4);
  position: relative;
}

.swiper-flip .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Navegação personalizada */
.swiper-flip .swiper-button-next,
.swiper-flip .swiper-button-prev {
  color: #ff1493;
  background: rgba(0, 0, 0, 0.5);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.swiper-flip .swiper-button-next:after,
.swiper-flip .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-flip .swiper-button-next:hover,
.swiper-flip .swiper-button-prev:hover {
  background: rgba(255, 20, 147, 0.3);
}

/* Estilos provocativos para página de prévias */
.pulsing-text {
  animation: textPulse 2s ease-in-out infinite;
}

.seductive-text {
  font-style: italic;
  opacity: 0.9;
  text-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

/* Seção de frases provocativas */
.teaser-section {
  margin: 0.8rem 0;
  padding: 0.6rem;
  background: linear-gradient(45deg, rgba(255, 20, 147, 0.1), rgba(0, 0, 0, 0.3));
  border-radius: 15px;
  border: 1px solid rgba(255, 20, 147, 0.2);
}

.teaser-text {
  font-size: 0.75rem;
  margin: 0.4rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
  color: #ffb3d9;
  text-shadow: 0 0 5px rgba(255, 20, 147, 0.5);
}

/* Banner de urgência */
.urgency-banner {
  background: linear-gradient(45deg, #ff1493, #ff69b4);
  padding: 0.5rem;
  border-radius: 25px;
  margin: 0.8rem 0;
  animation: urgencyPulse 3s ease-in-out infinite;
}

.urgency-text {
  font-weight: bold;
  font-size: 0.75rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Galeria provocativa */
.provocative-gallery .slide-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.provocative-gallery .slide-image {
  filter: blur(2px);
  transition: filter 0.3s ease;
}

.provocative-gallery .slide-image.active {
  filter: blur(1px);
}

.tease-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  padding: 0.5rem 0.8rem;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 20, 147, 0.5);
}

.tease-overlay.active {
  opacity: 0.9;
}

.tease-text {
  color: #ff1493;
  font-weight: bold;
  font-size: 0.7rem;
  text-shadow: 0 0 10px rgba(255, 20, 147, 0.8);
}

/* Indicador de desejo */
.desire-indicator {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, rgba(255, 20, 147, 0.8), rgba(255, 105, 180, 0.6));
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 20, 147, 0.5);
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
}

.desire-text {
  font-size: 0.6rem;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Botões melhorados */
.btn-vip {
  background: linear-gradient(45deg, rgba(255, 20, 147, 0.3), rgba(255, 105, 180, 0.2));
  border: 2px solid rgba(255, 20, 147, 0.5);
}

.btn-free {
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 20, 147, 0.1));
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.btn-text strong {
  font-size: 1rem;
  color: #fff;
}

.btn-text small {
  font-size: 0.75rem;
  opacity: 0.9;
  font-style: italic;
  color: #ffb3d9;
}

.pulsing-btn {
  animation: buttonPulse 3s ease-in-out infinite;
}

.glowing-btn {
  animation: buttonGlow 4s ease-in-out infinite;
}

/* Correção para botões na página de prévias */
.links .btn-vip,
.links .btn-free {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  min-height: 60px;
  width: 100%;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Animações */
@keyframes textPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

@keyframes urgencyPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 20, 147, 0.3); }
  50% { box-shadow: 0 0 30px rgba(255, 20, 147, 0.6); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes buttonPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 20, 147, 0.2); }
  50% { box-shadow: 0 0 40px rgba(255, 20, 147, 0.5); }
}

@keyframes buttonGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); }
  50% { box-shadow: 0 0 25px rgba(255, 255, 255, 0.4); }
}

/* Media Queries - Responsivo */

/* Tablets e telas médias */
@media (max-width: 768px) {
  .container {
    width: 95%;
    max-width: 100%;
  }
  
  .profile .avatar,
  .profile2 .avatar {
    width: 180px;
    height: 180px;
  }
  
  .swiper {
    width: 300px;
    height: 400px;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    gap: 0.8rem;
    font-size: 0.9rem;
  }
  
  .btn-icon,
  .btn svg {
    width: 28px;
    height: 28px;
  }
  
  .btn-icon-email {
    width: 56px;
    height: 56px;
  }
  
  .auto-slideshow {
    width: 230px;
    height: 230px;
  }
  
  .video-title {
    font-size: 1.2rem;
  }
  
  .video-subtitle {
    font-size: 0.9rem;
  }
  
  .container.index-container::before,
  .container.index-container::after {
    top: 380px;
  }
}

/* Smartphones */
@media (max-width: 480px) {
  body {
    padding: 0;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
  }
  
  .profile,
  .profile2 {
    padding: 1.5rem 0.8rem 1rem;
    margin-bottom: 1rem;
  }
  
  .profile .avatar,
  .profile2 .avatar {
    width: 150px;
    height: 150px;
    border: 3px solid rgba(255, 20, 147, 0.6);
  }
  
  .profile .logo,
  .profile2 .logo {
    width: 90%;
    margin: 0.8rem 0;
  }
  
  .tagline {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .links {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding: 1rem 2rem;
  }
  
  .btn {
    padding: 0.6rem 1rem;
    gap: 0.7rem;
    font-size: 0.85rem;
    min-height: 52px;
  }
  
  .btn-icon,
  .btn svg {
    width: 24px;
    height: 24px;
  }
  
  .btn-icon-email {
    width: 48px;
    height: 48px;
  }
  
  .gallery {
    margin-bottom: 3rem;
    margin-top: 1.5rem;
  }
  
  .gallery h2 {
    font-size: 1.3rem;
  }
  
  .swiper {
    width: 280px;
    height: 380px;
  }
  
  .social {
    padding: 1.5rem 0.8rem;
    gap: 0.8rem;
    min-height: 80px;
    background-size: 40%;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
  }
  
  .social img {
    width: 24px;
    height: 24px;
  }
  
  p.text {
    font-size: 0.8rem;
    line-height: 1.1rem;
  }
  
  .container.index-container::before,
  .container.index-container::after {
    top: 350px;
  }
}

/* Telas muito pequenas */
@media (max-width: 320px) {
  .profile .avatar,
  .profile2 .avatar {
    width: 120px;
    height: 120px;
  }
  
  .swiper {
    width: 240px;
    height: 320px;
  }
  
  .btn {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
    gap: 0.6rem;
    min-height: 48px;
  }
  
  .btn-icon,
  .btn svg {
    width: 20px;
    height: 20px;
  }
  
  .btn-icon-email {
    width: 40px;
    height: 40px;
  }
  
  .auto-slideshow {
    width: 230px;
    height: 230px;
  }
  
  .video-title {
    font-size: 1rem;
  }
  
  .video-subtitle {
    font-size: 0.8rem;
  }
  
  .container.index-container::before,
  .container.index-container::after {
    top: 320px;
  }
}

/* Tablets e telas médias - Swiper Flip */
@media (max-width: 768px) {
  .swiper-flip {
    height: 450px;
    max-width: 360px;
  }
  
  .swiper-flip .swiper-button-next,
  .swiper-flip .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  
  .swiper-flip .swiper-button-next:after,
  .swiper-flip .swiper-button-prev:after {
    font-size: 16px;
  }
}

/* Smartphones - Swiper Flip */
@media (max-width: 480px) {
  .gallery-flip {
    margin: 1.5rem 0;
  }
  
  .swiper-flip {
    height: 80vh; /* 80% da altura da tela no mobile */
    max-height: 600px;
    max-width: 340px;
  }
  
  .swiper-flip .swiper-button-next,
  .swiper-flip .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
  
  .swiper-flip .swiper-button-next:after,
  .swiper-flip .swiper-button-prev:after {
    font-size: 14px;
  }
}

/* Telas muito pequenas - Swiper Flip */
@media (max-width: 320px) {
  .swiper-flip {
    height: 75vh; /* 75% da altura para telas muito pequenas */
    max-height: 500px;
    max-width: 300px;
  }
  
  .swiper-flip .swiper-button-next,
  .swiper-flip .swiper-button-prev {
    width: 32px;
    height: 32px;
  }
  
  .swiper-flip .swiper-button-next:after,
  .swiper-flip .swiper-button-prev:after {
    font-size: 12px;
  }
}

/* Ícone SVG para prévias */
.btn svg.btn-icon {
  width: 32px;
  height: 32px;
  color: #ff1493;
  flex-shrink: 0;
}

/* Galeria de prévias simplificada */
.gallery-preview {
  margin: 2rem 0;
  text-align: center;
}

.gallery-preview .auto-slideshow {
  position: relative;
  width: 230px;
  height: 230px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 20, 147, 0.6);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.gallery-preview .slide-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-preview .slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.gallery-preview .slide-image.active {
  opacity: 1;
}

/* Responsividade para galeria de prévias */
@media (max-width: 768px) {
  .gallery-preview .auto-slideshow {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .gallery-preview .auto-slideshow {
    width: 150px;
    height: 150px;
    border: 3px solid rgba(255, 20, 147, 0.6);
  }
}

@media (max-width: 320px) {
  .gallery-preview .auto-slideshow {
    width: 120px;
    height: 120px;
  }
}