.bg-effect {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.bg-circle-1,
.bg-circle-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse1 8s ease-in-out infinite;
}

.bg-circle-1 {
    top: -50%;
    right: -50%;
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.2), rgba(168, 85, 247, 0.2));
}

.bg-circle-2 {
    bottom: -50%;
    left: -50%;
    background: linear-gradient(to top right, rgba(168, 85, 247, 0.2), rgba(6, 182, 212, 0.2));
    animation: pulse2 10s ease-in-out infinite;
}

@keyframes pulse1 {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@keyframes pulse2 {

    0%,
    100% {
        transform: scale(1.2);
        opacity: 0.3;
    }

    50% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.container header {
    padding: 2rem 0;
    text-align: center;
    margin-top: 2rem;
}

.title-vr {
    background-repeat: no-repeat;
    background-image: url('../../public/img/bg_fondo_title.jpg');
    background-size: cover;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 1rem;
    animation: fadeInDown 0.7s ease-out;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.25rem;
    color: #717171;
    max-width: 42rem;
    margin: 0 auto 1.5rem;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
}

.feature-badge.blue {
    border: 1px solid rgba(6, 68, 212, 0.7);
    color: #0190f8;
}

.feature-badge.purple {
    border: 1px solid rgba(151, 58, 238, 0.7);
    color: #be60fa;
}

.feature-badge.orange {
    border: 1px solid rgba(236, 146, 72, 0.7);
    color: #f44b24;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.place-card {
    background: linear-gradient(to bottom right, #1b4ca1, #0e144a);
    border-radius: 1rem;
    overflow: hidden;
    /* border: 1px solid rgba(6, 182, 212, 0.2); */
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease-out backwards;
}

.place-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.2);
    transform: translateY(-4px);
}

.place-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
    background-color: #0e144a;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.place-card:hover .place-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0f172abb, rgba(15, 23, 42, 0.242), transparent);
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        background-color: #2edb2e;
    }

    50% {
        opacity: 0.5;
        background-color: #2edb2e;
    }
}

/* .location {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
} */

.place-content {
    padding: 1.5rem;
}

.place-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.place-description {
    color: #bcbfc5;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.place-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-vr {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
}

.btn-vr-secondary {
    border: 1px solid rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.1);
    color: #c4b5fd;
}

.btn-vr-secondary:hover {
    background: rgba(168, 85, 247, 0.2);
}

.btn-vr-primary {
    background: linear-gradient(to right, #06b6d4, #a855f7);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.25);
}

.btn-vr-primary:hover {
    background: linear-gradient(to right, #0891b2, #9333ea);
    box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .title-vr {
        font-size: 2.1rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .places-grid {
        grid-template-columns: 1fr;
    }
}

/* Contenedor principal de recomendaciones */
.vr-recommendations {
    max-width: 56rem;
    margin: 0 auto 3rem;
    padding: 2rem;
    border-radius: 1.25rem;
    /* background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3); */
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

/* Header de la sección */
.vr-header {
    margin-bottom: 2rem;
    text-align: center;
}

.vr-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(75, 191, 211, 0.142);
    border: 1px solid rgba(6, 182, 212, 0.4);
    font-size: 0.875rem;
    color: #22d3ee;
    margin-bottom: 1rem;
    font-weight: 600;
}

.vr-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(to right, #22d3ee, #9170f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vr-subtitle {
    color: #717171;
    font-size: 1rem;
    max-width: 42rem;
    margin: 0 auto;
}

/* Lista de requerimientos */
.requirements-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.requirement-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 1rem;
    background: rgba(150, 190, 255, 0.1);
    border: 1px solid rgba(0, 136, 255, 0.2);
    transition: all 0.3s ease;
}

.requirement-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateX(4px);
}

.requirement-icon {
    padding: 0.75rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.requirement-icon.cyan {
    background: rgba(6, 182, 212, 0.2);
    color: #22d3ee;
}

.requirement-icon.purple {
    background: rgba(168, 85, 247, 0.2);
    color: #a78bfa;
}

.requirement-icon.pink {
    background: rgba(236, 72, 153, 0.2);
    color: #f9a8d4;
}

.requirement-content {
    flex: 1;
}

.requirement-content h3 {
    margin-bottom: 0.375rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.requirement-content p {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

.requirement-check {
    color: #4ade80;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* Tip box */
.vr-tip {
    padding: 1.25rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(6, 182, 212, 0.05));
    /* border: 1px solid rgba(6, 182, 212, 0.3); */
}

.vr-tip p {
    font-size: 0.9375rem;
    color: #1b45c4;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.vr-tip strong {
    color: #1b45c4;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .vr-recommendations {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .vr-header h2 {
        font-size: 1.5rem;
    }

    .vr-subtitle {
        font-size: 0.9375rem;
    }

    .requirement-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .requirement-icon {
        padding: 0.625rem;
    }

    .requirement-content h3 {
        font-size: 1rem;
    }

    .requirement-content p {
        font-size: 0.8125rem;
    }

    .requirement-check {
        display: none;
    }
}

@media (max-width: 480px) {
    .vr-recommendations {
        padding: 1.25rem;
    }

    .vr-header h2 {
        font-size: 1.25rem;
    }

    .vr-badge {
        font-size: 0.8125rem;
        padding: 0.25rem 0.75rem;
    }

    .requirement-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .requirement-icon {
        align-self: flex-start;
    }

    .vr-tip p {
        font-size: 0.875rem;
        flex-direction: column;
    }
}