:root {
    --primary-blue: #1a237e;
    --secondary-blue: #283593;
    --accent-yellow: #f9b233;
    --gradient-start: #1a237e;
    --gradient-end: #283593;
}

.body-container {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
/*     min-height: 100vh; */
    color: white;
    position: relative;
}

.hero-section {
    background: url('https://images.unsplash.com/photo-1612872087720-bb876e2e67d1?auto=format&fit=crop&w=1920&q=80') center/cover;
    position: relative;
    padding: 6rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(26, 35, 126, 0.9), rgba(40, 53, 147, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.main-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    background: linear-gradient(45deg, #fff, var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    z-index: -1;
    transition: all 0.4s ease;
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-yellow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.price-card.popular {
    border-color: var(--accent-yellow);
    transform: scale(1.05);
}

.price-card.popular:hover {
    transform: translateY(-10px) scale(1.07);
}

.plan-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.price-amount {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent-yellow);
    margin: 1.5rem 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-currency {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.texto-plan {
    color: rgba(255, 255, 255, 0.8) !important;
    position: relative;
    top: 30px;
}

.text-muted2 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.span-required {
    color: red;
    margin: 3px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-item {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.feature-icon {
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.cta-button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.discount-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.info-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .price-card {
        margin-bottom: 2rem;
    }

    .price-card.popular {
        transform: scale(1);
    }

    .hero-section {
        padding: 4rem 0;
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}