/* Glassmorphism Card */
.glassmorphism-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Precio destacado */
.precio-destacado {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    text-shadow: 0 25px 25px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .precio-destacado {
        font-size: 4.5rem;
    }
}

/* Pack Fútbol Box */
.pack-futbol-box {
    background: linear-gradient(to right, rgba(140, 75, 207), rgba(106, 44, 158));
    border: 1px solid rgba(140, 75, 207);
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	padding-top:1rem !important;
	padding-bottom:1rem !important;
	padding-left:2rem !important;
	padding-right:2rem !important;
}

/* Feature Cards v0 style */
.feature-card-v0 {
    border-radius: 1.5rem;
    border: 1px solid rgba(247, 147, 30, 0.4);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card-v0:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #f7931e;
}

.feature-icon-v0 {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(to right, #f7931e, #d67d12);
    border: 1px solid rgba(247, 147, 30, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
	margin-left:0px !important;
	margin-right:0px !important;
}

.feature-card-v0:hover .feature-icon-v0 {
    transform: scale(1.1);
}

.badge-v0 {
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background-color: rgba(247, 147, 30, 0.05);
    color: #f7931e;
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid rgba(247, 147, 30, 0.2);
    transition: background-color 0.3s ease;
}

.feature-card-v0:hover .badge-v0 {
    background-color: rgba(247, 147, 30, 0.1);
}

/* Divisor decorativo */
.divider-v0 {
    height: 1px;
    width: 3rem;
    background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .divider-v0 {
        width: 1px;
        height: 5rem;
    }
}

/* Button purple gradient */
.btn-purple-gradient {
    background: linear-gradient(to right, #8c4bcf, #6a2c9e);
    border: 1px solid rgba(214, 187, 240, 0.3);
    color: white;
    font-weight: 700;
    border-radius: 9999px;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-purple-gradient:hover {
    background: linear-gradient(to right, #7a3db8, #592486);
    transform: scale(1.05);
    color: white;
}

@media (min-width: 768px) {
    .btn-purple-gradient {
        font-size: 1.25rem;
    }
}

/* Hero text shadows */
.hero-title {
    text-shadow: 0 4px 3px rgba(0, 0, 0, 0.07), 0 2px 2px rgba(0, 0, 0, 0.06);
}

.hero-subtitle {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Precio tachado */
.precio-tachado {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

/* Disclaimer text */
.disclaimer-text {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .disclaimer-text {
        font-size: 0.75rem;
    }
}

/* Logo contrast */
.logo-contrast {
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04)) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
    -webkit-filter: contrast(1.25);
    filter: contrast(1.25);
}


.text-gray-200{--tw-text-opacity:1;color:rgb(229 231 235 / var(--tw-text-opacity, 1));font-size: 1.25rem !important;}

.display-6{font-size:3rem}

.small{font-size:1rem}

.fw-bold{font-weight:800 !important}

.accordion-item{border-radius:0.5rem;
  &:not(:first-of-type) {
    border-top: 1px solid;
  }
}