.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8fc 100%);
    text-align: center;
    padding: 2.5rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    position: relative;
    border: 2px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(36, 1, 41, 0.03) 0%,
        rgba(100, 80, 120, 0.08) 30%,
        rgba(120, 100, 140, 0.12) 70%,
        rgba(36, 1, 41, 0.15) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--pb-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-card h5,
.benefit-card p {
    position: relative;
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(36, 1, 41, 0.18);
    border-color: var(--pb-green-custom);
}

.benefit-card h5 {
    color: var(--pb-primary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.benefit-card:hover h5 {
    color: var(--pb-primary);
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
    transform: scale(1.02);
}

.benefit-card p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
    line-height: 1.6;
    transition: all 0.3s ease;
    font-weight: 400;
}

.benefit-card:hover p {
    color: rgba(36, 1, 41, 0.85);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Servicios */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(30, 42, 47, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--pb-accent);
    box-shadow: 0 20px 40px rgba(30, 42, 47, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--pb-accent), #b8892f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

/* Testimonios */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(30, 42, 47, 0.1);
    text-align: center;
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--pb-accent);
    font-family: 'Playfair Display', serif;
    position: absolute;
    top: 1rem;
    left: 2rem;
    opacity: 0.3;
}

/* Google Reviews Styles */
.google-review-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
    font-family: 'Roboto', sans-serif;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.google-review-card .review-text {
    flex: 1;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a73e8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    margin-right: 12px;
    flex-shrink: 0;
}

.review-author-info {
    flex: 1;
}

.review-author {
    font-size: 14px;
    font-weight: 500;
    color: #202124;
    line-height: 20px;
}

.review-meta {
    font-size: 12px;
    color: #5f6368;
    line-height: 16px;
}

.review-rating {
    color: #fbbc04;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.review-date {
    font-size: 12px;
    color: #70757a;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    line-height: 20px;
    color: #3c4043;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 15px 40px rgba(30, 42, 47, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pb-accent), #b8892f);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--pb-accent);
    box-shadow: 0 25px 50px rgba(30, 42, 47, 0.15);
}

.pricing-card.featured {
    border-color: var(--pb-accent);
    transform: scale(1.05);
    position: relative;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header h3 {
    color: var(--pb-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--pb-accent);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.pricing-period {
    color: var(--pb-text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pricing-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(30, 42, 47, 0.15);
    color: var(--pb-text);
    position: relative;
    padding-left: 2rem;
    font-size: 0.9rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--pb-accent);
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-features li.not-included::before {
    content: '✗';
    color: #dc3545;
}

.pricing-features li.not-included {
    color: var(--pb-text-light);
    text-decoration: line-through;
}

.pricing-note {
    background: rgba(200, 155, 60, 0.1);
    border: 1px solid rgba(200, 155, 60, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 3rem;
    text-align: center;
    color: var(--pb-text);
}

.pricing-note strong {
    color: var(--pb-primary);
}

.badge-featured {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--pb-accent);
    color: white;
    padding: 8px 45px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(36, 1, 41, 0.3);
    transform: rotate(45deg);
}

.pricing-card.featured {
    border: 2px solid var(--pb-green-custom);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .pricing-price {
        font-size: 2.5rem;
    }

    #reviewsCarousel .carousel-control-prev {
        left: 10px;
    }

    #reviewsCarousel .carousel-control-next {
        right: 10px;
    }
}
