/* 
 * Estilos mejorados para la página de inicio - Prana Integral
 * Colores empresariales: #7a8071 (verde salvia), #5a6051 (verde oscuro), #c6d1cc (verde claro)
 */

/* Hero Section */
.prana-hero {
    background: linear-gradient(135deg, #7a8071 0%, #5a6051 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 60px;
    border-radius: 0 0 50px 50px;
    box-shadow: 0 10px 30px rgba(122, 128, 113, 0.3);
}

.prana-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.prana-hero .lead {
    font-size: 1.4rem;
    opacity: 0.95;
}

/* Feature Cards */
.feature-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(122, 128, 113, 0.15);
    background: white;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(122, 128, 113, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c6d1cc 0%, #7a8071 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(122, 128, 113, 0.2);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #5a6051;
    margin-bottom: 40px;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #7a8071, #c6d1cc);
    border-radius: 2px;
}

/* Buttons */
.btn-prana {
    background: linear-gradient(135deg, #7a8071 0%, #5a6051 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(122, 128, 113, 0.3);
}

.btn-prana:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 128, 113, 0.4);
    color: white;
}

.btn-prana-outline {
    background: transparent;
    border: 2px solid #7a8071;
    color: #7a8071;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-prana-outline:hover {
    background: #7a8071;
    color: white;
    transform: translateY(-2px);
}

/* Content Cards */
.service-card, .blog-card, .event-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    box-shadow: 0 3px 15px rgba(122, 128, 113, 0.1);
}

.service-card:hover, .blog-card:hover, .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(122, 128, 113, 0.25);
}

.service-card .card-img-top,
.blog-card .card-img-top,
.event-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

/* Badges */
.badge-prana {
    background: linear-gradient(135deg, #7a8071, #5a6051);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
}

/* Content Divider */
.content-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7a8071, #c6d1cc);
    margin: 10px 0 20px 0;
    border-radius: 2px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #c6d1cc 0%, #d4ddd6 100%);
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #5a6051;
}

.stat-label {
    color: #7a8071;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Pagination */
.pagination-wrapper .pagination {
    gap: 10px;
}

.pagination-wrapper .page-link {
    border-radius: 50px;
    border: 2px solid #7a8071;
    color: #7a8071;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-link:hover {
    background: #7a8071;
    color: white;
    transform: translateY(-2px);
}

.pagination-wrapper .page-item.active .page-link {
    background: linear-gradient(135deg, #7a8071, #5a6051);
    border-color: #7a8071;
}

/* Responsive */
@media (max-width: 768px) {
    .prana-hero h1 {
        font-size: 2.5rem;
    }
    
    .prana-hero .lead {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .prana-hero {
        padding: 50px 0;
        border-radius: 0 0 30px 30px;
    }
    
    .prana-hero h1 {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Image placeholder gradients */
.img-placeholder-service {
    background: linear-gradient(135deg, #c6d1cc, #7a8071);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder-blog {
    background: linear-gradient(135deg, #7a8071, #5a6051);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder-event {
    background: linear-gradient(135deg, #5a6051, #7a8071);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
