* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #2e8b8b;
  --secondary-color: #87ceeb;
  --accent-color: #20b2aa;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #333333;
  --text-color: #2c3e50;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 12px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.nav-logo {
  flex: 0 0 auto;
}

.nav-logo h2 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0;
}

/* Logo versions */
.logo-full {
  display: block;
}

.logo-short {
  display: none;
}

.desktop-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.desktop-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
  font-size: 0.95rem;
}

.desktop-menu a:hover {
  color: var(--primary-color);
}

.language-selector {
  position: relative;
  flex: 0 0 auto;
}

.language-btn {
  background: var(--secondary-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 500;
}

.language-btn::after {
  content: "▼";
  font-size: 0.8rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.language-selector:hover .language-btn::after {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  min-width: 150px;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 1001;
  margin-top: 0.5rem;
}

.language-dropdown.show {
  display: block;
}

.language-selector:hover .language-dropdown {
  display: block;
}

.language-dropdown a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--text-color);
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.language-dropdown a:hover {
  background-color: var(--light-gray);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1002;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: none;
}

.mobile-menu-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-menu-content {
  background: var(--white);
  width: 90%;
  max-width: 400px;
  border-radius: var(--border-radius);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow);
}

.mobile-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary-color);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li {
  margin: 1rem 0;
  text-align: center;
}

.mobile-menu-list a {
  display: block;
  padding: 1rem;
  font-size: 1.2rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: background-color 0.3s ease;
}

.mobile-menu-list a:hover {
  background-color: var(--light-gray);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  background: linear-gradient(135deg, #e8f4f8 0%, #b8e6e6 50%, #87ceeb 100%);
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.bubble-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.bubble-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.bubble-3 {
  width: 100px;
  height: 100px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

.bubble-4 {
  width: 40px;
  height: 40px;
  top: 30%;
  left: 70%;
  animation-delay: 1s;
}

.bubble-5 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 60%;
  animation-delay: 3s;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(45deg, rgba(135, 206, 235, 0.3), rgba(32, 178, 170, 0.2));
  opacity: 0.3;
  animation: wave 4s ease-in-out infinite;
}

.wave-1 {
  animation-delay: 0s;
}

.wave-2 {
  animation-delay: 2s;
  opacity: 0.15;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes wave {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.5);
  }
}

.hero-main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 550px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.cta-button {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 139, 139, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 139, 139, 0.4);
}

.hero-image {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image > i {
  font-size: 12rem;
  color: var(--secondary-color);
  opacity: 0.8;
  animation: tshirtFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(135, 206, 235, 0.4));
}

@keyframes tshirtFloat {
  0%, 100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.floating-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.floating-icons i {
  position: absolute;
  font-size: 2rem;
  color: var(--accent-color);
  opacity: 0.7;
  animation: float 3s ease-in-out infinite;
}

.floating-icons i:nth-child(1) {
  top: -70px;
  left: -50px;
  animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
  top: -50px;
  right: -70px;
  animation-delay: 1s;
}

.floating-icons i:nth-child(3) {
  bottom: -60px;
  left: -40px;
  animation-delay: 2s;
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

/* Precios Section */
.precios {
  background: var(--light-gray);
}

.precios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.precio-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.precio-card:hover {
  transform: translateY(-5px);
}

.precio-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.precio-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.precio {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
}

/* Ubicacion */
.ubicacion-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ubicacion-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.ubicacion-details {
  margin-top: 2rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.detail-item i {
  color: var(--secondary-color);
  width: 20px;
}

.mapa-container {
  height: 400px;
}

/* Como Llegar Section */
.como-llegar {
  background: var(--white);
  padding: 5rem 0;
}

.como-llegar-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.como-llegar-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.info-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-card p {
  color: var(--text-color);
  line-height: 1.6;
}

.info-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateX(5px);
}

.step-number {
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.video-container {
  position: sticky;
  top: 100px;
}

.video-placeholder {
  background: linear-gradient(135deg, var(--light-gray), #e0e0e0);
  border-radius: var(--border-radius);
  padding: 4rem 2rem;
  text-align: center;
  border: 2px dashed var(--secondary-color);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.video-placeholder i {
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.5;
}

.video-placeholder p {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 600;
}

.video-placeholder span {
  font-size: 0.9rem;
  color: #888;
}

/* Resenas - Carrusel automatico infinito */
.resenas {
  background: var(--light-gray);
  padding: 5rem 0;
}

.resenas-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-container {
  overflow: hidden;
  border-radius: var(--border-radius);
  position: relative;
  padding: 20px 0;
}

.resenas-track {
  display: flex;
  gap: 2rem;
  animation: scrollCarousel 50s linear infinite;
  width: max-content;
}

@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.resena-slide {
  min-width: 350px;
  max-width: 350px;
  flex-shrink: 0;
}

.resena-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.estrellas {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 2px;
}

.resena-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
  font-size: 0.95rem;
  color: var(--text-color);
  min-height: 60px;
}

.cliente {
  border-top: 1px solid var(--light-gray);
  padding-top: 1rem;
  margin-top: auto;
}

.cliente strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.cliente span {
  font-size: 0.85rem;
  color: #666;
  display: block;
  margin-bottom: 0.5rem;
}

.fecha-comentario {
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Google Maps Link */
.google-maps-link {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.google-maps-link p {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.google-maps-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.google-maps-link a:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Medios de Pago */
.medios-pago {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.medios-pago h3 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.metodos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.metodo-card {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.metodo-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.metodo-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.metodo-card > p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.metodo-info {
  text-align: left;
  background: var(--white);
  padding: 1rem;
  border-radius: 8px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-label {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.85rem;
}

.info-value-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.info-value {
  font-family: monospace;
  background: var(--light-gray);
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  word-break: break-all;
  flex: 1;
  min-width: 0;
}

.copy-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: var(--accent-color);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .desktop-menu {
    gap: 1rem;
  }
  
  .desktop-menu a {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .desktop-menu {
    display: none;
  }
  
  .nav {
    padding: 1rem;
  }
  
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex: none;
    justify-content: center;
  }
  
  .nav-logo h2 {
    font-size: 1rem;
  }
  
  /* En movil mostrar version corta */
  .logo-full {
    display: none;
  }
  
  .logo-short {
    display: block;
  }
  
  .language-selector {
    flex: none;
    z-index: 10;
  }
  
  .language-dropdown {
    position: fixed;
    top: 70px;
    right: 10px;
    z-index: 1002;
    max-height: 60vh;
  }
  
  .language-dropdown.show {
    display: block;
  }
  
  /* Hero movil */
  .hero {
    padding: 1.5rem 1rem;
    min-height: calc(100vh - 60px);
    margin-top: 60px;
  }

  .hero-main-content {
    flex-direction: column;
    gap: 2rem;
    padding: 0;
  }

  .hero-content {
    max-width: 100%;
    padding: 1.5rem;
    order: 1;
  }

  .hero-content h1 {
    font-size: 1.4rem;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .cta-button {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero-image {
    order: 2;
  }

  .hero-image > i {
    font-size: 7rem;
  }

  .floating-icons i {
    font-size: 1.5rem;
  }

  .floating-icons i:nth-child(1) {
    top: -40px;
    left: -30px;
  }

  .floating-icons i:nth-child(2) {
    top: -30px;
    right: -40px;
  }

  .floating-icons i:nth-child(3) {
    bottom: -35px;
    left: -25px;
  }

  /* Ubicacion movil */
  .ubicacion-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mapa-container {
    height: 300px;
    order: 2;
  }
  
  .ubicacion-info {
    order: 1;
  }

  /* Como llegar movil */
  .como-llegar-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .video-container {
    position: static;
  }

  .video-placeholder {
    min-height: 250px;
    padding: 2rem 1rem;
  }

  .video-placeholder i {
    font-size: 3rem;
  }

  /* Secciones movil */
  section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .precios-grid {
    gap: 1rem;
  }

  .precio-card {
    padding: 1.5rem;
  }

  .precio {
    font-size: 1.5rem;
  }

  /* Carrusel movil */
  .resenas-carousel {
    padding: 0;
  }

  .carousel-container {
    padding: 10px 0;
  }

  .resenas-track {
    gap: 1rem;
    animation: scrollCarousel 40s linear infinite;
  }

  .resena-slide {
    min-width: 280px;
    max-width: 280px;
  }

  .resena-card {
    padding: 1.5rem;
    min-height: 250px;
  }

  .resena-card p {
    font-size: 0.9rem;
  }

  /* Medios de pago movil */
  .medios-pago {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .metodos-grid {
    gap: 1.5rem;
  }

  .metodo-card {
    padding: 1.25rem;
  }

  .info-value {
    font-size: 0.75rem;
    padding: 0.4rem;
  }

  .copy-btn {
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
  }

  /* WhatsApp movil */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
  }

  /* Footer movil */
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.25rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .hero-image > i {
    font-size: 5rem;
  }

  .floating-icons i {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .resena-slide {
    min-width: 260px;
    max-width: 260px;
  }

  .resena-card {
    padding: 1.25rem;
    min-height: 230px;
  }

  .step {
    padding: 0.75rem;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}
