/* CSS Variables */
:root {
  --primary-blue: #00d4ff;
  --secondary-blue: #0099cc;
  --dark-blue: #1a365d;
  --darker-blue: #0f2a44;
  --accent-gold: #ffd700;
  --text-light: #ffffff;
  --text-gray: #a0aec0;
  --text-dark: #2d3748;
  --success-green: #00ff88;
  --gradient-primary: linear-gradient(135deg, #00d4ff, #0099cc);
  --gradient-secondary: linear-gradient(135deg, #ffd700, #ffb347);
  --facebook-color: #1877f2;
  --instagram-color: #e4405f;
  --youtube-color: #ff0000;
  --linkedin-color: #0077b5;
  --whatsapp-color: #25d366;
  --email-color: #ea4335;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background: linear-gradient(135deg, var(--darker-blue), var(--dark-blue));
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(15px, 4vw, 20px);
}

/* Particles Background */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  top: 80%;
  left: 80%;
  animation-delay: 1s;
}
.particle:nth-child(3) {
  top: 40%;
  left: 40%;
  animation-delay: 2s;
}
.particle:nth-child(4) {
  top: 60%;
  left: 60%;
  animation-delay: 3s;
}
.particle:nth-child(5) {
  top: 10%;
  left: 90%;
  animation-delay: 4s;
}
.particle:nth-child(6) {
  top: 90%;
  left: 10%;
  animation-delay: 5s;
}
.particle:nth-child(7) {
  top: 30%;
  left: 70%;
  animation-delay: 1.5s;
}
.particle:nth-child(8) {
  top: 70%;
  left: 30%;
  animation-delay: 2.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Hero Section with Miami Background */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.4), rgba(15, 42, 68, 0.4)), url("Florida.jpg") center / cover;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: clamp(40px, 8vh, 80px) 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.05), transparent 50%);
  pointer-events: none;
}

.hero-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(15px, 4vw, 20px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 8vw, 60px);
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 600px;
}

.hero-spacer {
  height: clamp(20px, 5vh, 40px);
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: clamp(15px, 3vh, 20px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.title-line {
  display: block;
  color: var(--text-light);
  white-space: nowrap;
}

/* Animated Underline */
.animated-underline {
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  margin: 15px 0 25px 0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.animated-underline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: underlineShimmer 2s ease-in-out infinite;
}

@keyframes underlineShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.hero-subtitle {
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: clamp(20px, 4vh, 30px);
  margin-top: 10px;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-description {
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  margin-bottom: clamp(20px, 4vh, 30px);
  opacity: 0.9;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: clamp(15px, 4vw, 30px);
  margin-bottom: clamp(30px, 6vh, 40px);
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: clamp(100px, 20vw, 120px);
}

.stat-number {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--primary-blue);
  display: block;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.stat-label {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  opacity: 0.8;
  margin-top: 5px;
}

.trust-indicators {
  display: flex;
  gap: clamp(15px, 4vw, 25px);
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  opacity: 0.9;
}

.trust-item i {
  color: var(--success-green);
  font-size: 1.1rem;
}

/* Action Cards - Made more compact and responsive */
.action-cards-container {
  display: flex;
  flex-direction: column;
  gap: clamp(15px, 3vh, 20px);
  max-width: 450px;
  width: 100%;
}

.action-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: clamp(15px, 4vw, 25px);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.action-card.compact {
  padding: clamp(15px, 3vw, 20px);
}

.action-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.action-card:hover::before {
  opacity: 1;
}

.action-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: clamp(40px, 8vw, 50px);
  height: clamp(40px, 8vw, 50px);
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: white;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.card-content h3 {
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-light);
}

.card-content p {
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  opacity: 0.8;
  margin-bottom: 15px;
  line-height: 1.5;
}

.meeting-details {
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: clamp(0.75rem, 2vw, 0.85rem);
}

.detail-item i {
  color: var(--primary-blue);
  width: 14px;
}

/* Colorear las líneas específicas de la card */
.detail-item:first-child span {
  color: #ffd700 !important; /* Amarillo para la fecha */
}

.detail-item:last-child span {
  color: #ffd700 !important; /* Cambiado de #ff4757 (rojo) a #ffd700 (amarillo) para la hora */
}

.action-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: clamp(10px, 3vw, 12px) clamp(15px, 4vw, 20px);
  border-radius: 10px;
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 15px rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.action-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.action-btn:hover::before {
  left: 100%;
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

/* Countdown Section - Enhanced Responsive */
.countdown-section {
  background: linear-gradient(135deg, var(--darker-blue), var(--dark-blue));
  padding: clamp(40px, 10vh, 80px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.countdown-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1), transparent 70%);
  pointer-events: none;
}

.countdown-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.countdown-header {
  margin-bottom: clamp(30px, 8vh, 50px);
}

.countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 215, 0, 0.2);
  color: var(--accent-gold);
  padding: clamp(8px, 2vw, 12px) clamp(15px, 4vw, 25px);
  border-radius: 30px;
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
}

.countdown-badge i {
  font-size: 1.1rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.countdown-header h3 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-header p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  opacity: 0.8;
  color: var(--text-gray);
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 3vw, 20px);
  margin-bottom: clamp(30px, 8vh, 50px);
  flex-wrap: wrap;
}

.countdown-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  padding: clamp(15px, 4vw, 25px) clamp(10px, 3vw, 20px);
  min-width: clamp(80px, 15vw, 120px);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.countdown-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.countdown-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
}

.countdown-number {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 900;
  color: var(--primary-blue);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  margin-bottom: 10px;
  font-family: "Inter", monospace;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.countdown-number::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.countdown-label {
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.countdown-separator {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--primary-blue);
  opacity: 0.6;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 0.6;
  }
  51%,
  100% {
    opacity: 0.2;
  }
}

.countdown-cta {
  text-align: center;
}

.countdown-cta p {
  font-size: clamp(1rem, 3vw, 1.1rem);
  margin-bottom: 25px;
  color: var(--text-gray);
  font-weight: 500;
}

.countdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: clamp(12px, 3vw, 18px) clamp(20px, 5vw, 35px);
  border-radius: 15px;
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.countdown-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.countdown-btn:hover::before {
  left: 100%;
}

.countdown-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.countdown-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.countdown-btn:hover i {
  transform: scale(1.1);
}

.countdown-number.changing {
  animation: numberChange 0.6s ease-in-out;
}

@keyframes numberChange {
  0% {
    transform: scale(1) rotateY(0deg);
  }
  50% {
    transform: scale(1.1) rotateY(90deg);
    color: var(--accent-gold);
  }
  100% {
    transform: scale(1) rotateY(0deg);
  }
}

.countdown-urgent .countdown-item {
  animation: urgentPulse 1s ease-in-out infinite;
  border-color: #ff4757;
}

.countdown-urgent .countdown-number {
  color: #ff4757;
  text-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
}

@keyframes urgentPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 71, 87, 0.5);
  }
}

/* ROI Section - Enhanced Responsive */
.roi-section {
  padding: clamp(40px, 10vh, 80px) 0;
  position: relative;
  z-index: 2;
}

.roi-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 8vw, 60px);
  align-items: center;
}

.roi-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.2);
  color: var(--accent-gold);
  padding: clamp(6px, 2vw, 8px) clamp(15px, 4vw, 20px);
  border-radius: 25px;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.roi-text h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(20px, 4vh, 30px);
  color: var(--text-light);
}

.roi-percentage {
  display: flex;
  align-items: baseline;
  margin-bottom: 15px;
  justify-content: center;
}

.percentage-number {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  color: var(--primary-blue);
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

/* Animated 15% */
.animated-percentage {
  position: relative;
  display: inline-block;
  animation: percentageGlow 3s ease-in-out infinite;
}

.animated-percentage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.3), transparent);
  animation: percentageShimmer 2s ease-in-out infinite;
  border-radius: 10px;
  z-index: -1;
}

@keyframes percentageGlow {
  0%,
  100% {
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 50px rgba(0, 212, 255, 0.8), 0 0 80px rgba(0, 212, 255, 0.4);
  }
}

@keyframes percentageShimmer {
  0% {
    transform: translateX(-100%) skewX(-15deg);
  }
  100% {
    transform: translateX(200%) skewX(-15deg);
  }
}

.percentage-symbol {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--primary-blue);
  margin-left: 5px;
}

.roi-description {
  font-size: clamp(1rem, 3vw, 1.1rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-light);
}

.roi-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  opacity: 0.8;
  margin-bottom: clamp(20px, 4vh, 30px);
  font-style: italic;
}

.roi-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  padding: 10px 0;
}

.feature-item i {
  color: var(--primary-blue);
  font-size: 1.1rem;
  width: 20px;
}

.highlight-feature {
  background: rgba(0, 212, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-blue);
}

.roi-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 6vh, 40px);
}

.roi-circle-container {
  position: relative;
  width: clamp(200px, 40vw, 300px);
  height: clamp(200px, 40vw, 300px);
}

.roi-circle {
  width: clamp(150px, 30vw, 200px);
  height: clamp(150px, 30vw, 200px);
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.4);
  animation: roiPulse 3s ease-in-out infinite;
}

@keyframes roiPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.roi-inner {
  text-align: center;
  color: white;
}

.roi-label {
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.roi-value {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 900;
}

.currency-symbols {
  position: absolute;
  width: 100%;
  height: 100%;
}

.currency {
  position: absolute;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--accent-gold);
  animation: orbit 8s linear infinite;
}

.currency:nth-child(1) {
  animation-delay: 0s;
}
.currency:nth-child(2) {
  animation-delay: 1.3s;
}
.currency:nth-child(3) {
  animation-delay: 2.6s;
}
.currency:nth-child(4) {
  animation-delay: 4s;
}
.currency:nth-child(5) {
  animation-delay: 5.3s;
}
.currency:nth-child(6) {
  animation-delay: 6.6s;
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(clamp(80px, 15vw, 120px)) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(clamp(80px, 15vw, 120px)) rotate(-360deg);
  }
}

.roi-orbits {
  position: absolute;
  width: 100%;
  height: 100%;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.investment-calculator {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: clamp(15px, 4vw, 25px);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 400px;
}

.investment-calculator h4 {
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: var(--primary-blue);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.calc-row:last-child {
  border-bottom: none;
}

.cta-button-container {
  text-align: center;
  margin-top: clamp(20px, 6vh, 40px);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  padding: clamp(12px, 3vw, 18px) clamp(20px, 5vw, 35px);
  border-radius: 15px;
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
  text-decoration: none;
  color: white;
}

/* Questions Section - Enhanced Responsive */
.questions-section {
  padding: clamp(60px, 12vh, 100px) 0;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 10vh, 80px);
}

.section-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.2);
  color: var(--accent-gold);
  padding: clamp(8px, 2vw, 10px) clamp(15px, 4vw, 25px);
  border-radius: 30px;
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.section-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text-light);
}

.section-subtitle {
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--primary-blue);
}

.section-description {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  opacity: 0.8;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.logos-container {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 6vw, 40px);
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Responsive: Stack logos vertically on mobile */
@media (max-width: 768px) {
  .logos-container {
    flex-direction: column;
    align-items: center;
    gap: clamp(25px, 6vw, 35px);
    margin-bottom: 50px;
  }

  .logo-item {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logos-container {
    gap: clamp(20px, 5vw, 30px);
    margin-bottom: 40px;
  }
}

.logo-item {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.logo-item:hover {
  opacity: 1;
}

.partner-logo {
  height: clamp(25px, 6vw, 35px); /* Reducido de clamp(35px, 8vw, 50px) */
  width: auto;
  filter: brightness(0) invert(1);
}

/* Special class for Teo logo - Make it much larger */
.partner-logo.teo-logo {
  height: clamp(80px, 20vw, 120px); /* Aumentado significativamente */
  transform: scale(1.6); /* Aumentado de scale(1.4) */
  transition: all 0.3s ease;
  filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(0, 212, 255, 0.4)); /* Glow más intenso */
}

.partner-logo.teo-logo:hover {
  transform: scale(1.8); /* Aumentado de scale(1.5) */
  filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(0, 212, 255, 0.6)); /* Glow mucho más intenso */
}

/* Responsive adjustments for Teo logo */
@media (max-width: 768px) {
  .partner-logo.teo-logo {
    height: clamp(75px, 18vw, 100px);
    transform: scale(1.4);
    margin: 15px 0;
  }

  .partner-logo.teo-logo:hover {
    transform: scale(1.6);
  }
}

@media (max-width: 480px) {
  .partner-logo.teo-logo {
    height: clamp(70px, 16vw, 90px);
    transform: scale(1.3);
    margin: 12px 0;
  }
}

.questions-title {
  text-align: center;
  margin-bottom: clamp(40px, 8vh, 60px);
}

.questions-title h3 {
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-light);
}

.questions-title p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  opacity: 0.8;
}

.questions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: clamp(20px, 6vw, 40px);
}

.question-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: clamp(25px, 6vw, 40px) clamp(20px, 5vw, 30px);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.question-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.question-card:hover::before {
  opacity: 1;
}

.question-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 900;
  color: rgba(0, 212, 255, 0.2);
}

.card-icon {
  width: clamp(50px, 10vw, 70px);
  height: clamp(50px, 10vw, 70px);
  background: var(--gradient-primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: white;
  margin-bottom: 25px;
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
}

.question-card h4 {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-light);
}

.highlight-box {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.highlight-box strong {
  color: var(--primary-blue);
  font-size: clamp(1rem, 3vw, 1.1rem);
}

/* Estilo limpio para el texto de las preguntas */
.question-text {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.7;
  color: var(--text-light);
  opacity: 0.85;
  margin-bottom: 25px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-align: left;
}

.question-card p {
  display: none; /* Ocultar el párrafo original */
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

.benefits-list i {
  color: var(--success-green);
  font-size: 1rem;
  width: 16px;
}

/* Footer - Enhanced Responsive */
.footer {
  background: linear-gradient(135deg, var(--darker-blue), var(--dark-blue));
  padding: clamp(40px, 8vh, 60px) 0 clamp(30px, 6vh, 40px);
  position: relative;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.1), transparent 50%);
  pointer-events: none;
}

/* Footer adjustments for single column */
.footer-content {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(30px, 6vh, 40px);
  position: relative;
  z-index: 2;
}

.footer-column.teo-only {
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.8), rgba(15, 42, 68, 0.9));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 25px;
  padding: clamp(40px, 8vw, 60px);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 500px;
  width: 100%;
}

/* Make Teo's logo circle much larger in footer */
.logo-circle.teo-main {
  width: clamp(100px, 18vw, 140px); /* Mucho más grande */
  height: clamp(100px, 18vw, 140px); /* Mucho más grande */
  background: var(--gradient-primary);
  border-radius: 25px; /* Más redondeado */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.5); /* Sombra más intensa */
  transition: all 0.3s ease;
  border: 3px solid rgba(255, 255, 255, 0.2); /* Borde más grueso */
}

.logo-circle.teo-main:hover {
  transform: scale(1.1);
  box-shadow: 0 25px 60px rgba(0, 212, 255, 0.6);
}

.logo-circle.teo-main .logo-text {
  font-size: clamp(2rem, 5vw, 2.8rem); /* Texto mucho más grande */
  font-weight: 900;
  color: white;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

/* Adjust company details for larger logo */
.footer-column.teo-only .company-details h4 {
  font-size: clamp(1.6rem, 4vw, 2rem); /* Más grande */
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.footer-column.teo-only .company-details p {
  font-size: clamp(1.2rem, 3vw, 1.4rem); /* Más grande */
  opacity: 0.9;
  margin-bottom: 8px;
  color: var(--text-light);
  font-weight: 500;
}

.footer-column.teo-only .company-details small {
  font-size: clamp(1rem, 2.5vw, 1.1rem); /* Más grande */
  opacity: 0.7;
  font-style: italic;
  color: var(--text-gray);
  display: block;
  margin-top: 10px;
}

/* Make social icons larger too */
.footer-column.teo-only .social-icon {
  width: clamp(65px, 14vw, 85px); /* Más grandes */
  height: clamp(65px, 14vw, 85px); /* Más grandes */
  border-radius: 20px;
  font-size: clamp(1.4rem, 4vw, 1.8rem); /* Iconos más grandes */
}

.footer-column {
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.8), rgba(15, 42, 68, 0.9));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 25px;
  padding: clamp(30px, 6vw, 40px);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 153, 204, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-column:hover::before {
  opacity: 1;
}

.footer-column:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.company-info {
  text-align: center;
}

.company-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(25px, 5vh, 35px);
}

.logo-circle {
  width: clamp(70px, 12vw, 90px);
  height: clamp(70px, 12vw, 90px);
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
  transition: all 0.3s ease;
}

.logo-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(0, 212, 255, 0.5);
}

.logo-text {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 900;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.company-details {
  text-align: center;
  margin-bottom: 25px;
}

.company-details h4 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.company-details p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  opacity: 0.9;
  margin-bottom: 5px;
  color: var(--text-light);
  font-weight: 500;
}

.company-details small {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  opacity: 0.7;
  font-style: italic;
  color: var(--text-gray);
  display: block;
  margin-top: 8px;
}

/* Social Icons Grid - 3 iconos en una fila */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(15px, 4vw, 20px);
  max-width: 250px;
  margin: 0 auto;
  padding: 0;
}

.social-row {
  display: contents;
}

.social-icon {
  width: clamp(55px, 12vw, 70px);
  height: clamp(55px, 12vw, 70px);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.social-icon:hover::before {
  transform: translateX(100%);
}

.social-icon:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.social-icon.facebook {
  background: linear-gradient(135deg, #1877f2, #0d5aa7);
}

.social-icon.facebook:hover {
  box-shadow: 0 20px 40px rgba(24, 119, 242, 0.5);
}

.social-icon.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.social-icon.instagram:hover {
  box-shadow: 0 20px 40px rgba(225, 48, 108, 0.5);
}

.social-icon.whatsapp {
  background: linear-gradient(135deg, #25d366, #1da851);
}

.social-icon.whatsapp:hover {
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.5);
}

.social-icon.email {
  background: linear-gradient(135deg, #ea4335, #c23321);
}

.social-icon.email:hover {
  box-shadow: 0 15px 35px rgba(234, 67, 53, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: clamp(25px, 5vh, 35px);
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  opacity: 0.8;
  margin-bottom: 20px;
  color: var(--text-light);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 35px);
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
}

.footer-links a:hover {
  color: var(--primary-blue);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
  .footer-column.teo-only {
    padding: clamp(35px, 7vw, 45px);
  }

  .logo-circle.teo-main {
    width: clamp(90px, 16vw, 120px);
    height: clamp(90px, 16vw, 120px);
    border-radius: 22px;
  }

  .footer {
    padding: clamp(30px, 6vh, 40px) 0 clamp(20px, 4vh, 30px);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: clamp(25px, 5vh, 30px);
  }

  .footer-column {
    padding: clamp(25px, 5vw, 30px);
  }

  .social-icons {
    max-width: 220px;
    gap: clamp(12px, 3vw, 15px);
  }

  .social-icon {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  }
}

@media (max-width: 480px) {
  .footer-column.teo-only {
    padding: clamp(30px, 6vw, 40px);
  }

  .logo-circle.teo-main {
    width: clamp(80px, 14vw, 100px);
    height: clamp(80px, 14vw, 100px);
    border-radius: 20px;
  }

  .footer-column {
    padding: clamp(20px, 4vw, 25px);
  }

  .social-icons {
    max-width: 200px;
    gap: clamp(10px, 2.5vw, 12px);
  }

  .social-icon {
    width: clamp(45px, 8vw, 55px);
    height: clamp(45px, 8vw, 55px);
    font-size: clamp(1rem, 2vw, 1.2rem);
    border-radius: 14px;
  }

  .logo-circle {
    width: clamp(60px, 10vw, 70px);
    height: clamp(60px, 10vw, 70px);
    border-radius: 16px;
  }
}

/* Enhanced Hero Subtitle - Made bigger and responsive */
.hero-main-subtitle {
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: clamp(20px, 4vh, 25px);
  font-style: italic;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Date Display - Counter style responsive */
.hero-date-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 3vw, 15px);
  margin-bottom: clamp(30px, 6vh, 40px);
  flex-wrap: wrap;
}

.date-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 15px;
  padding: clamp(10px, 3vw, 15px) clamp(8px, 2vw, 12px);
  min-width: clamp(60px, 12vw, 80px);
  backdrop-filter: blur(15px);
  text-align: center;
  transition: all 0.3s ease;
}

.date-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary-blue);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.date-number {
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--primary-blue);
  line-height: 1;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
  margin-bottom: 5px;
  font-family: "Inter", monospace;
}

.date-label {
  font-size: clamp(0.7rem, 2vw, 0.8rem);
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.date-separator {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--primary-blue);
  opacity: 0.6;
}

/* Enhanced Countdown Main Date - Responsive */
.countdown-main-date {
  font-size: clamp(1.1rem, 4vw, 1.8rem) !important;
  font-weight: 700 !important;
  margin-bottom: 15px !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
  opacity: 1 !important;
  color: var(--text-light) !important; /* Back to white */
}

.countdown-main-date .date-line-1 {
  color: var(--text-light) !important; /* White instead of yellow */
  display: block;
  margin-bottom: 5px;
}

.countdown-main-date .date-line-2 {
  color: var(--text-light) !important; /* White instead of red */
  display: block;
}

/* Excel-style Calculator - Enhanced Responsive */
.calc-table {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.3);
  background: rgba(255, 255, 255, 0.02);
}

.calc-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.calc-row-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-row-table:last-child {
  border-bottom: none;
}

.calc-cell {
  padding: clamp(8px, 2vw, 12px) clamp(4px, 1vw, 8px);
  text-align: center;
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.calc-cell:last-child {
  border-right: none;
}

.calc-cell.header {
  color: white;
  font-weight: 700;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-cell.highlight {
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary-blue);
  font-weight: 700;
}

.calc-row-table:hover .calc-cell {
  background: rgba(255, 255, 255, 0.05);
}

.calc-row-table:hover .calc-cell.highlight {
  background: rgba(0, 212, 255, 0.2);
}

/* Responsive Design Breakpoints */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: clamp(30px, 6vh, 40px);
    text-align: center;
  }

  .roi-content {
    grid-template-columns: 1fr;
    gap: clamp(30px, 6vh, 40px);
    text-align: center;
  }

  .questions-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vh, 30px);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: clamp(40px, 8vh, 60px) 0;
  }

  .hero-title {
    white-space: normal;
  }

  .title-line {
    display: block;
  }

  .countdown-section {
    padding: clamp(40px, 8vh, 60px) 0;
  }



  .title-line {
    display: block;
  }

  .countdown-section {
    padding: clamp(40px, 8vh, 60px) 0;
  }

  .countdown-timer {
    gap: clamp(8px, 2vw, 15px);
  }

  .countdown-item {
    min-width: clamp(70px, 12vw, 100px);
    padding: clamp(12px, 3vw, 20px) clamp(8px, 2vw, 15px);
  }

  .countdown-number {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .countdown-label {
    font-size: clamp(0.6rem, 1.8vw, 0.8rem);
  }

  .countdown-separator {
    font-size: clamp(1rem, 3vw, 1.5rem);
  }

  .question-card {
    padding: clamp(30px, 7vw, 45px) clamp(25px, 6vw, 35px); /* Aumentado padding */
  }

  .question-card h4 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    margin-bottom: 20px;
  }

  .highlight-box {
    padding: 18px;
    margin-bottom: 20px;
  }

  .highlight-box strong {
    font-size: clamp(1.1rem, 4.5vw, 1.3rem);
  }

  .question-text {
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    margin-bottom: 25px;
  }

  .benefits-list li {
    font-size: clamp(0.9rem, 3.2vw, 1rem);
    margin-bottom: 12px;
  }
}

/* Animation Classes */
.reveal-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Digit container styles - Enhanced for responsive */
.digit-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.digit {
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
  min-width: clamp(0.4em, 1vw, 0.6em);
  text-align: center;
}

/* Normal digit change animation */
.digit.digit-changing {
  animation: digitFlip 0.6s ease-in-out;
}

@keyframes digitFlip {
  0% {
    transform: perspective(400px) rotateX(0deg);
  }
  50% {
    transform: perspective(400px) rotateX(-90deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
  }
}

/* Special descending animation for seconds */
.digit.digit-descending {
  position: relative;
  overflow: hidden;
}

.digit.digit-descending::before {
  content: attr(data-next);
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: center;
  animation: descendDigit 0.6s ease-in-out;
}

.digit.digit-descending {
  animation: currentDigitExit 0.6s ease-in-out;
}

@keyframes descendDigit {
  0% {
    top: -100%;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes currentDigitExit {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Question Cards - Enhanced Typography */
.question-card h4 {
  font-size: clamp(1.4rem, 4vw, 1.8rem); /* Aumentado de 1.1rem a 1.4rem */
  font-weight: 800; /* Aumentado de 700 a 800 */
  margin-bottom: 25px; /* Aumentado de 20px a 25px */
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Añadido para mejor contraste */
  letter-spacing: 0.5px; /* Añadido para mejor legibilidad */
}

.highlight-box {
  background: rgba(0, 212, 255, 0.15); /* Aumentado de 0.1 a 0.15 */
  border: 2px solid rgba(0, 212, 255, 0.4); /* Aumentado de 1px a 2px y opacidad */
  border-radius: 12px; /* Aumentado de 10px a 12px */
  padding: 20px; /* Aumentado de 15px a 20px */
  margin-bottom: 25px; /* Aumentado de 20px a 25px */
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2); /* Añadido para más profundidad */
}

.highlight-box strong {
  color: var(--primary-blue);
  font-size: clamp(1.2rem, 4vw, 1.5rem); /* Aumentado de 1rem a 1.2rem */
  font-weight: 900; /* Aumentado de normal a 900 */
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3); /* Añadido efecto glow */
  letter-spacing: 0.5px; /* Añadido para mejor legibilidad */
}

/* Enhanced question text */
.question-text {
  font-size: clamp(1rem, 3vw, 1.2rem); /* Aumentado de 0.9rem a 1rem */
  line-height: 1.8; /* Aumentado de 1.7 a 1.8 */
  color: var(--text-light);
  opacity: 0.9; /* Aumentado de 0.85 a 0.9 */
  margin-bottom: 30px; /* Aumentado de 25px a 30px */
  font-weight: 500; /* Aumentado de 400 a 500 */
  letter-spacing: 0.3px;
}

/* Enhanced benefits list */
.benefits-list li {
  display: flex;
  align-items: center;
  gap: 15px; /* Aumentado de 12px a 15px */
  margin-bottom: 15px; /* Aumentado de 12px a 15px */
  font-size: clamp(0.95rem, 3vw, 1.1rem); /* Aumentado de 0.8rem a 0.95rem */
  font-weight: 500; /* Añadido peso de fuente */
  color: var(--text-light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* Añadido para mejor contraste */
}

.benefits-list i {
  color: var(--success-green);
  font-size: 1.2rem; /* Aumentado de 1rem a 1.2rem */
  width: 20px; /* Aumentado de 16px a 20px */
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.4); /* Añadido efecto glow */
}

/* Enhanced card numbers */
.card-number {
  position: absolute;
  top: 25px; /* Aumentado de 20px a 25px */
  right: 25px; /* Aumentado de 20px a 25px */
  font-size: clamp(2.5rem, 8vw, 4rem); /* Aumentado de 2rem a 2.5rem */
  font-weight: 900;
  color: rgba(0, 212, 255, 0.25); /* Aumentado opacidad de 0.2 a 0.25 */
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3); /* Añadido efecto glow */
}

/* Enhanced card icons */
.card-icon {
  width: clamp(60px, 12vw, 80px); /* Aumentado de 50px a 60px */
  height: clamp(60px, 12vw, 80px); /* Aumentado de 50px a 60px */
  background: var(--gradient-primary);
  border-radius: 20px; /* Aumentado de 18px a 20px */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 4vw, 2rem); /* Aumentado de 1.3rem a 1.5rem */
  color: white;
  margin-bottom: 30px; /* Aumentado de 25px a 30px */
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4); /* Aumentado sombra */
  border: 2px solid rgba(255, 255, 255, 0.2); /* Añadido borde */
}

/* Enhanced hover effects */
.question-card:hover .highlight-box {
  background: rgba(0, 212, 255, 0.2); /* Más prominente en hover */
  border-color: rgba(0, 212, 255, 0.6);
  transform: scale(1.02); /* Añadido efecto de escala */
}

.question-card:hover .card-icon {
  transform: scale(1.1); /* Añadido efecto de escala */
  box-shadow: 0 25px 50px rgba(0, 212, 255, 0.5);
}

.question-card:hover h4 {
  color: var(--primary-blue); /* Cambio de color en hover */
  transform: translateY(-2px); /* Sutil movimiento */
}

/* Responsive enhancements for mobile */
@media (max-width: 768px) {
  .question-card {
    padding: clamp(30px, 7vw, 45px) clamp(25px, 6vw, 35px); /* Aumentado padding */
  }

  .question-card h4 {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    margin-bottom: 20px;
  }

  .highlight-box {
    padding: 18px;
    margin-bottom: 20px;
  }

  .highlight-box strong {
    font-size: clamp(1.1rem, 4.5vw, 1.3rem);
  }

  .question-text {
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    margin-bottom: 25px;
  }

  .benefits-list li {
    font-size: clamp(0.9rem, 3.2vw, 1rem);
    margin-bottom: 12px;
  }
}

/* Footer adjustments for single column */
@media (max-width: 768px) {
  .partner-logo.teo-logo {
    height: clamp(75px, 18vw, 100px);
    transform: scale(1.4);
    margin: 15px 0;
  }

  .partner-logo.teo-logo:hover {
    transform: scale(1.6);
  }

  .footer-column.teo-only {
    padding: clamp(35px, 7vw, 45px);
  }

  .logo-circle.teo-main {
    width: clamp(90px, 16vw, 120px);
    height: clamp(90px, 16vw, 120px);
    border-radius: 22px;
  }

  .footer {
    padding: clamp(30px, 6vh, 40px) 0 clamp(20px, 4vh, 30px);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: clamp(25px, 5vh, 30px);
  }

  .footer-column {
    padding: clamp(25px, 5vw, 30px);
  }

  .social-icons {
    max-width: 220px;
    gap: clamp(12px, 3vw, 15px);
  }

  .social-icon {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  }
}

@media (max-width: 480px) {
  .partner-logo.teo-logo {
    height: clamp(70px, 16vw, 90px);
    transform: scale(1.3);
    margin: 12px 0;
  }

  .footer-column.teo-only {
    padding: clamp(30px, 6vw, 40px);
  }

  .logo-circle.teo-main {
    width: clamp(80px, 14vw, 100px);
    height: clamp(80px, 14vw, 100px);
    border-radius: 20px;
  }

  .footer-column {
    padding: clamp(20px, 4vw, 25px);
  }

  .social-icons {
    max-width: 200px;
    gap: clamp(10px, 2.5vw, 12px);
  }

  .social-icon {
    width: clamp(45px, 8vw, 55px);
    height: clamp(45px, 8vw, 55px);
    font-size: clamp(1rem, 2vw, 1.2rem);
    border-radius: 14px;
  }

  .logo-circle {
    width: clamp(60px, 10vw, 70px);
    height: clamp(60px, 10vw, 70px);
    border-radius: 16px;
  }
}
