body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; /* Peso regular por defecto */
    color: #333;
}
h1, h2, h3, h4 {
    font-weight: 600;
    color:#555;
}
p, li, span {
    font-weight: 400;
}

.section-1 {
    background-color: #e9ecef;
    padding: 30px 0;
}

.section-2 {
    background-color: #f8f9fa;
    padding: 30px 0;
}

.section-3 {
    background-color: #EBF0F4;
    padding: 30px 0;
}

.price-card {
    background: white;
    border-radius: 8px;
    padding: 25px 20px;
    margin-bottom: 20px;
    -webkit-box-shadow: 5px 5px 0px 0px rgba(190,192,216,0.91);
    -moz-box-shadow: 5px 5px 0px 0px rgba(190,192,216,0.91);
    box-shadow: 5px 5px 0px 0px rgba(190,192,216,0.91);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.price-card:hover {
    transform: translateY(-5px);
    -webkit-box-shadow: 10px 10px 52px -21px rgba(0,0,0,0.46);
    -moz-box-shadow: 10px 10px 52px -21px rgba(0,0,0,0.46);
    box-shadow: 10px 10px 52px -21px rgba(0,0,0,0.46);
}

.price-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 15px;
}

.price-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #697cc5;
    letter-spacing: 0.5px;
}

.chart-placeholder {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.number-display {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: #0d6efd;
    margin: 15px 0;
}

.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-top: 1px solid #dee2e6;
    text-align: center;
    font-size: 14px;
}

.info-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.info-card h4 {
    color: #0d6efd;
    margin-bottom: 15px;
}

.info-icon {
    font-size: 24px;
    color: #0d6efd;
    margin-bottom: 10px;
}

.note {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #888;
    font-weight: 300;
    letter-spacing: 0.3px;
}
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    color: #555;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}

/* Ajuste para el header que ahora solo tiene el logo */
.header {
    padding: 25px 0 25px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

/* Estilos responsivos adicionales si son necesarios */
@media (max-width: 768px) {
    .price-value {
        font-size: 20px;
    }
    
    .number-display {
        font-size: 24px;
    }
    
    .info-card {
        margin-bottom: 15px;
    }
}
#ciudades-chart {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.apexcharts-text {
    font-family: 'Montserrat' !important;
}
#exact-gradient-chart {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    #ciudades-chart, #oportunidades-chart {
        margin-bottom: 30px;
    }
}
#exact-gradient-chart .apexcharts-radialbar-area {
    stroke-dasharray: 4 !important;
    stroke-linecap: round !important;
}

#exact-gradient-chart .apexcharts-radialbar-track {
    stroke: rgba(0, 0, 0, 0.05) !important;
}
.image-swap-container {
    --transition-time: 0.4s;
    max-width: 100%; /* Asegura responsividad */
  }
  
  .image-swap-container img {
    width: 100%;
    height: auto;
    transition: opacity var(--transition-time) ease-in-out;
    object-fit: cover; /* Mantiene relación de aspecto */
  }
  
  .hover-image {
    opacity: 0;
  }
  
  .image-swap-container:hover .main-image {
    opacity: 0;
  }
  
  .image-swap-container:hover .hover-image {
    opacity: 1;
  }
  
  /* Ajustes para móviles */
  @media (max-width: 768px) {
    .image-swap-container {
      --transition-time: 0.3s;
    }
    
    .image-swap-container img {
      border-radius: 8px !important; /* Redondeo en móviles */
    }
  }
  .vertical-center {
    display: block;
    margin: 0 auto; /* Centrado horizontal extra */
    position: relative;
  }

/* ==================== CTA SECTION ==================== */
.cta-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse-bg 4s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.cta-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 700px;
    text-align: left;
}

.cta-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 20px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-features li:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.cta-action {
    margin-top: 30px;
}

.cta-invite {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #fff;
    color: #667eea;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    color: #764ba2;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-container {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-features li {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .cta-features li:hover {
        transform: translateX(5px);
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}