/* index.css - Versión mejorada y espectacular */
/* RESET MEJORADO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 102, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 230, 230, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 51, 102, 0.1) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================
   HERO SECTION ESPECTACULAR
========================== */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.2);
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  mix-blend-mode: multiply;
}

.particles-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
  filter: blur(1px);
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  max-width: 1000px;
  padding: 0 2em;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text-wrapper {
  margin-bottom: 3em;
}

.titulo-hero {
  font-family: 'Rouge Script', cursive;
  font-size: 6em;
  margin-bottom: 0.3em;
  line-height: 1;
  position: relative;
  display: inline-block;
  text-shadow: 
    0 0 20px rgba(255, 102, 255, 0.8),
    0 0 40px rgba(255, 102, 255, 0.4);
}

.titulo-hero.glitch {
  animation: glitch 3s infinite;
}

@keyframes glitch {
  0%, 100% {
    transform: translate(0);
    text-shadow: 
      0 0 20px rgba(255, 102, 255, 0.8),
      0 0 40px rgba(255, 102, 255, 0.4);
  }
  1%, 1.5% {
    transform: translate(-2px, 1px);
    text-shadow: 
      0 0 20px rgba(0, 230, 230, 0.8),
      0 0 40px rgba(0, 230, 230, 0.4);
  }
  2%, 2.5% {
    transform: translate(2px, -1px);
    text-shadow: 
      0 0 20px rgba(255, 51, 102, 0.8),
      0 0 40px rgba(255, 51, 102, 0.4);
  }
}

.subtitulo {
  font-size: 1.4em;
  margin-bottom: 1.5em;
  line-height: 1.6;
  color: #f0f0f0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.neon-text {
  color: #ff3366;
  font-weight: bold;
  text-shadow: 
    0 0 10px rgba(255, 51, 102, 0.8),
    0 0 20px rgba(255, 51, 102, 0.6),
    0 0 30px rgba(255, 51, 102, 0.4);
  animation: neonPulse 1.5s infinite alternate;
}

@keyframes neonPulse {
  from {
    opacity: 0.9;
    text-shadow: 
      0 0 10px rgba(255, 51, 102, 0.8),
      0 0 20px rgba(255, 51, 102, 0.6);
  }
  to {
    opacity: 1;
    text-shadow: 
      0 0 15px rgba(255, 51, 102, 1),
      0 0 25px rgba(255, 51, 102, 0.8),
      0 0 35px rgba(255, 51, 102, 0.6);
  }
}

/* BOTONES MEJORADOS */
.hero-botones {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-hover-effect {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
  padding: 1em 2em;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 220px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.btn-hover-effect::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00e6e6, #ff66ff);
  z-index: -1;
  transition: opacity 0.3s ease;
}

.btn-hover-effect:hover::before {
  opacity: 0.9;
}

.boton-calendario {
  background: #00e6e6;
  color: #000;
}

.boton-calendario:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 10px 30px rgba(0, 230, 230, 0.4),
    0 0 30px rgba(0, 230, 230, 0.2);
}

.boton-reserva {
  background: #ff66ff !important;
  color: #000 !important;
}

.boton-reserva:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 10px 30px rgba(255, 102, 255, 0.4),
    0 0 30px rgba(255, 102, 255, 0.2);
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-icon {
  position: relative;
  z-index: 2;
  font-size: 1.3em;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.btn-shine {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  z-index: 1;
}

.btn-hover-effect:hover .btn-shine {
  opacity: 0.6;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  position: relative;
  margin: 0 auto 10px;
}

.wheel {
  width: 4px;
  height: 10px;
  background: #ff66ff;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

.arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #ff66ff;
  border-bottom: 2px solid #ff66ff;
  transform: rotate(45deg);
  margin: 0 auto;
  animation: arrowPulse 2s infinite;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* =========================
   CONTENIDO PRINCIPAL
========================== */
.content-section {
  padding: 6em 8%;
  position: relative;
}

/* BLOQUES DE CARACTERÍSTICAS */
.feature-block {
  margin-bottom: 8em;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-block.animated {
  opacity: 1;
  transform: translateY(0);
}

.feature-container {
  display: flex;
  align-items: center;
  gap: 4em;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-container.reverse {
  flex-direction: row-reverse;
}

.feature-image {
  flex: 1;
  position: relative;
  min-width: 300px;
}

.feature-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(255, 102, 255, 0.1);
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.feature-image:hover img {
  transform: scale(1.02);
}

.image-glow {
  position: absolute;
  inset: -10px;
  background: linear-gradient(45deg, #ff66ff, #00e6e6);
  border-radius: 20px;
  filter: blur(20px);
  opacity: 0.4;
  z-index: 1;
  animation: glowPulse 3s infinite alternate;
}

@keyframes glowPulse {
  from { opacity: 0.3; }
  to { opacity: 0.6; }
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(0, 0, 0, 0.7));
  border-radius: 15px;
  z-index: 3;
}

.feature-content {
  flex: 1;
  position: relative;
}

.feature-header {
  margin-bottom: 2em;
  position: relative;
}

.feature-number {
  font-family: 'Special Elite', system-ui;
  font-size: 5em;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -40px;
  left: -20px;
  z-index: 0;
}

.feature-content h2 {
  font-family: 'Special Elite', system-ui;
  font-size: 2.5em;
  margin-bottom: 0.5em;
  color: #fff;
  position: relative;
  z-index: 1;
}

.feature-text {
  font-size: 1.1em;
  line-height: 1.7;
  color: #ddd;
}

.feature-text p {
  margin-bottom: 1em;
}

.highlighted {
  color: #ffccff;
  font-size: 1.2em;
  font-weight: 600;
  position: relative;
  padding-left: 1em;
}

.highlighted::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background: linear-gradient(to bottom, #ff66ff, #00e6e6);
  border-radius: 2px;
}

.feature-decoration {
  position: absolute;
  right: -50px;
  bottom: -50px;
  z-index: -1;
}

.paint-splatter,
.brush-stroke,
.palette-dots {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff66ff, #00e6e6);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(10px);
}

.brush-stroke {
  border-radius: 0;
  transform: rotate(45deg);
}

.palette-dots {
  display: flex;
  gap: 10px;
  background: none;
}

.palette-dots::before,
.palette-dots::after {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff66ff;
}

.palette-dots::after {
  background: #00e6e6;
  margin-left: 20px;
}

/* =========================
   SECCIÓN DE RESEÑAS
========================== */
.reviews-section {
  padding: 6em 8%;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 102, 255, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.section-header {
  text-align: center;
  margin-bottom: 3em;
}

.titulo-galeria {
  font-family: 'Klee One', cursive;
  font-size: 3em;
  margin-bottom: 0.5em;
  color: #fff;
  position: relative;
  display: inline-block;
}

.titulo-galeria::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #ff66ff, #00e6e6);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2em;
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
}

.reviews-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-carousel {
  display: flex;
  gap: 2em;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 2em 1em;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 320px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.review-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.review-card:nth-child(2) { transition-delay: 0.1s; }
.review-card:nth-child(3) { transition-delay: 0.2s; }
.review-card:nth-child(4) { transition-delay: 0.3s; }
.review-card:nth-child(5) { transition-delay: 0.4s; }

.review-card-inner {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2em;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #ff66ff, #00e6e6);
  border-radius: 20px 20px 0 0;
}

.review-card-inner:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 102, 255, 0.2);
  border-color: rgba(255, 102, 255, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 1.5em;
}

.avatar-container {
  position: relative;
}

.avatar-ring {
  position: absolute;
  inset: -3px;
  border: 2px solid #ff66ff;
  border-radius: 50%;
  animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.review-info {
  flex: 1;
}

.review-name {
  font-weight: bold;
  color: #ffccff;
  margin-bottom: 0.2em;
  font-size: 1.1em;
}

.review-meta {
  font-size: 0.9em;
  color: #aaa;
}

.review-body {
  margin-bottom: 1.5em;
}

.review-text {
  font-size: 1em;
  color: #ddd;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  padding-left: 1.5em;
}

.review-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2em;
  color: #ff66ff;
  line-height: 1;
}

.review-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: #00e6e6;
  font-weight: 600;
  transition: all 0.3s ease;
}

.review-link:hover {
  color: #ff66ff;
  gap: 0.8em;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  margin-top: 2em;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(255, 102, 255, 0.2);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.5em;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: #ff66ff;
  transform: scale(1.2);
}

.reviews-link-text {
  text-align: center;
  font-size: 0.9em;
  color: #aaa;
  margin-top: 3em;
}

.reviews-link {
  color: #4ea3ff;
  text-decoration: underline;
  font-weight: 600;
}

/* =========================
   SECCIÓN DE EXPERIENCIAS
========================== */
.experiences-section {
  padding: 6em 8%;
  position: relative;
}

.experiences-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(0, 230, 230, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.experience-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5em;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.experience-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.experience-card:nth-child(2) { transition-delay: 0.1s; }
.experience-card:nth-child(3) { transition-delay: 0.2s; }

.experience-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 102, 255, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(255, 102, 255, 0.1);
}

.experience-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-icon i {
  font-size: 2.5em;
  color: #ff66ff;
  position: relative;
  z-index: 2;
}

.icon-glow {
  position: absolute;
  inset: 0;
  background: #ff66ff;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.3;
  animation: iconPulse 3s infinite alternate;
}

@keyframes iconPulse {
  from { opacity: 0.2; transform: scale(0.8); }
  to { opacity: 0.4; transform: scale(1.2); }
}

.experience-card h3 {
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 1em;
  font-family: 'Special Elite', system-ui;
}

.experience-card p {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 1.5em;
}

.experience-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: #00e6e6;
  font-weight: 600;
  transition: all 0.3s ease;
}

.experience-cta:hover {
  color: #ff66ff;
  gap: 0.8em;
}

.experience-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 102, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
  pointer-events: none;
}

.experience-card:hover .experience-hover {
  opacity: 1;
}

/* =========================
   PRE-FOOTER Y FOOTER
========================== */
.prefooter {
  background: linear-gradient(to bottom, #000, #111);
  padding: 4em 8%;
  position: relative;
  overflow: hidden;
}

.prefooter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #ff66ff, transparent);
}

.prefooter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3em;
  max-width: 1200px;
  margin: 0 auto;
}

.prefooter-col h3 {
  font-family: 'Klee One', cursive;
  font-size: 1.4em;
  margin-bottom: 1em;
  color: #fff;
  position: relative;
  padding-bottom: 0.5em;
}

.prefooter-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ff66ff;
}

.prefooter-col p,
.prefooter-col li {
  margin-bottom: 0.8em;
  line-height: 1.6;
  color: #aaa;
}

.prefooter-col ul {
  list-style: none;
  padding: 0;
}

.prefooter-col ul li {
  position: relative;
  padding-left: 1.5em;
}

.prefooter-col ul li::before {
  content: '•';
  color: #ff66ff;
  position: absolute;
  left: 0;
}

.prefooter-icons {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}

.prefooter-icons .social-link {
  color: #fff;
  font-size: 1em;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.prefooter-icons .social-link:hover {
  color: #ff66ff;
  transform: translateX(5px);
}

footer {
  background: #000;
  text-align: center;
  padding: 2em;
  color: #666;
  font-size: 0.9em;
  border-top: 1px solid #222;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, #ff66ff, #00e6e6);
}

/* =========================
   RESPONSIVE DESIGN
========================== */
@media (max-width: 1024px) {
  .titulo-hero {
    font-size: 4.5em;
  }
  
  .feature-container {
    gap: 3em;
  }
  
  .feature-image {
    min-width: 250px;
  }
  
  .feature-content h2 {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 90vh;
    min-height: 500px;
  }
  
  .titulo-hero {
    font-size: 3.5em;
  }
  
  .subtitulo {
    font-size: 1.1em;
  }
  
  .hero-botones {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  
  .btn-hover-effect {
    width: 100%;
    max-width: 300px;
  }
  
  .feature-container {
    flex-direction: column !important;
    gap: 2em;
  }
  
  .feature-image {
    min-width: auto;
  }
  
  .feature-content h2 {
    font-size: 1.8em;
  }
  
  .feature-number {
    font-size: 3em;
    top: -30px;
    left: 0;
  }
  
  .reviews-carousel {
    gap: 1em;
    padding: 1em;
  }
  
  .review-card {
    min-width: 280px;
  }
  
  .experiences-grid {
    grid-template-columns: 1fr;
  }
  
  .prefooter-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2em;
  }
  
  .prefooter-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .prefooter-col ul li {
    padding-left: 0;
  }
  
  .prefooter-col ul li::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .titulo-hero {
    font-size: 2.8em;
  }
  
  .subtitulo {
    font-size: 1em;
  }
  
  .content-section,
  .reviews-section,
  .experiences-section {
    padding: 4em 5%;
  }
  
  .feature-block {
    margin-bottom: 4em;
  }
  
  .titulo-galeria {
    font-size: 2em;
  }
  
  .experience-card {
    padding: 1.5em;
  }
  
  .carousel-controls {
    gap: 1em;
  }
}