/* ===================================
   LANDING PAGES - NICHOS Y CIUDADES
   Estilos compartidos premium
   =================================== */

/* Hero con fondo fotográfico y efectos */
.hero-landing {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-landing-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-landing-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-landing-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 10, 9, 0.95) 0%, rgba(12, 10, 9, 0.7) 50%, rgba(12, 10, 9, 0.9) 100%);
}

.hero-landing-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 160, 23, 0.1) 0%, transparent 40%);
    z-index: 1;
}

/* Shapes flotantes animadas */
.hero-landing-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-landing-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float-shape 20s ease-in-out infinite;
}

.hero-landing-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-landing-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    bottom: 10%;
    left: -80px;
    animation-delay: -5s;
}

.hero-landing-shapes .shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 40%;
    right: 10%;
    animation-delay: -10s;
}

@keyframes float-shape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -30px) rotate(5deg);
    }

    50% {
        transform: translate(-10px, 20px) rotate(-3deg);
    }

    75% {
        transform: translate(30px, 10px) rotate(7deg);
    }
}

/* Contenido del Hero */
.hero-landing-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-landing-content {
    max-width: 650px;
}

.hero-landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-landing-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.hero-landing-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-landing-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-landing-stats {
    display: flex;
    gap: 50px;
}

.hero-landing-stats .stat-item {
    text-align: center;
}

.hero-landing-stats .stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hero-landing-stats .stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 8px;
}

/* Visual del Hero (imagen o mockup) */
.hero-landing-visual {
    position: relative;
}

.hero-landing-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 80px rgba(212, 160, 23, 0.1);
}

.hero-landing-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-landing-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* Badge flotante sobre imagen */
.hero-landing-float-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.3);
}

/* Sección de Features Grid */
.features-premium {
    padding: 120px 0;
}

.features-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-premium-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-premium-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 160, 23, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 160, 23, 0.1);
}

.feature-premium-card .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.2), rgba(212, 160, 23, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-premium-card .feature-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-premium-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.feature-premium-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sección de Categories/Segmentos con imágenes */
.categories-section {
    padding: 120px 0;
    background: rgba(212, 160, 23, 0.02);
}

.categories-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.category-premium-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}

.category-premium-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-premium-card:hover img {
    transform: scale(1.1);
}

.category-premium-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s ease;
}

.category-premium-card:hover .overlay {
    background: linear-gradient(to top, rgba(212, 160, 23, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.category-premium-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.category-premium-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Sección de Testimonials */
.testimonials-premium {
    padding: 120px 0;
}

.testimonials-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-premium-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    position: relative;
}

.testimonial-premium-card::before {
    content: '"';
    position: absolute;
    top: 25px;
    left: 35px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-premium-card .quote {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    padding-top: 30px;
    font-style: italic;
}

.testimonial-premium-card .author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-premium-card .avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #000;
}

.testimonial-premium-card .author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.testimonial-premium-card .author-info span {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, rgba(212, 160, 23, 0.02) 100%);
    border-top: 1px solid rgba(212, 160, 23, 0.2);
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.cta-banner-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-bottom: 30px;
}

/* Tags de ciudades/zonas */
.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.location-tag {
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.25);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.location-tag:hover {
    background: rgba(212, 160, 23, 0.25);
    transform: translateY(-3px);
}

/* Pricing Premium - REDISEÑADO GLASS */
.pricing-premium {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.pricing-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pricing-premium-card {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 160, 23, 0.1);
    border-color: rgba(212, 160, 23, 0.3);
}

.pricing-premium-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.pricing-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.15);
    color: var(--primary);
    border: 1px solid rgba(212, 160, 23, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.1);
}

.pricing-premium-price {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
}

.pricing-premium-price .currency {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--gray-400);
    margin-top: 10px;
}

.pricing-premium-price .amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    letter-spacing: -2px;
}

.pricing-premium-subtitle {
    font-size: 1.2rem;
    color: var(--gray-300);
    margin-bottom: 45px;
    font-weight: 400;
}

.pricing-premium-features {
    list-style: none;
    padding: 0;
    margin: 0 0 45px;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-premium-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-premium-features li:last-child {
    border-bottom: none;
}

.pricing-premium-features li i {
    color: var(--primary);
    background: rgba(212, 160, 23, 0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.pricing-premium-card .btn-primary {
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.3);
    transition: all 0.3s ease;
}

.pricing-premium-card .btn-primary:hover {
    box-shadow: 0 15px 40px rgba(212, 160, 23, 0.5);
    transform: translateY(-2px);
}

/* Links relacionados */
.related-links {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-links p {
    text-align: center;
    color: var(--gray-400);
    margin-bottom: 25px;
}

.related-links-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .hero-landing-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-landing-content {
        max-width: 100%;
    }

    .hero-landing-cta {
        justify-content: center;
    }

    .hero-landing-stats {
        justify-content: center;
    }

    .hero-landing-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .features-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-premium-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-landing {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-landing-container {
        padding: 0 20px;
    }

    .hero-landing-visual {
        display: none;
    }

    .hero-landing-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .hero-landing-stats .stat-number {
        font-size: 2rem;
    }

    .features-premium {
        padding: 80px 0;
    }

    .features-premium-grid {
        grid-template-columns: 1fr;
    }

    .categories-section {
        padding: 80px 0;
    }

    .categories-premium-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-premium {
        padding: 80px 0;
    }

    .pricing-premium {
        padding: 80px 0;
    }

    .pricing-premium-card {
        padding: 40px 25px;
    }

    .pricing-premium-price .amount {
        font-size: 3.5rem;
    }
}