/* ===== DESCUBRIR PAGE STYLES ===== */

/* Page Hero */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(64, 145, 108, 0.9) 0%, 
        rgba(45, 106, 79, 0.85) 50%,
        rgba(26, 77, 46, 0.8) 100%);
    color: white;
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/descubrir-hero.jpg') center/cover;
    z-index: -1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: slideInDown 1s ease-out;
}

.page-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.3s both;
    font-weight: 300;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Content */
.main-content {
    padding: var(--space-xl) 0;
    background: var(--blanco-hueso);
}

/* Filters Section */
.filters-section {
    margin-bottom: var(--space-xl);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.filter-card {
    background: white;
    border: 2px solid var(--gris-claro);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.filter-card:hover {
    transform: translateY(-5px);
    border-color: var(--verde-esmeralda);
    box-shadow: var(--sombra-suave);
}

.filter-card.active {
    border-color: var(--verde-esmeralda);
    background: var(--verde-esmeralda);
    color: white;
}

.filter-icon {
    width: 60px;
    height: 60px;
    background: var(--gradiente-verde-claro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.filter-card.active .filter-icon {
    background: white;
    color: var(--verde-esmeralda);
}

.filter-text {
    font-weight: 600;
    font-size: 1rem;
}

/* Attractions Section */
.attractions-section {
    margin-bottom: var(--space-xl);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.attraction-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--sombra-suave);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid var(--gris-claro);
}

.attraction-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-intensa);
}

.attraction-image {
    height: 200px;
    background: linear-gradient(135deg, var(--verde-esmeralda), var(--verde-fresco));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.attraction-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.attraction-card:hover .attraction-image::before {
    opacity: 1;
}

.category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.category-badge.adventure {
    background: #e74c3c;
    color: white;
}

.category-badge.nature {
    background: #27ae60;
    color: white;
}

.category-badge.culture {
    background: #f39c12;
    color: white;
}

.category-badge.relax {
    background: #3498db;
    color: white;
}

.attraction-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.attraction-card:hover .attraction-overlay {
    opacity: 1;
}

.btn-view-details {
    background: rgba(255,255,255,0.9);
    color: var(--verde-bosque);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: white;
    transform: scale(1.05);
}

.attraction-content {
    padding: 2rem;
}

.attraction-title {
    color: var(--verde-bosque);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.attraction-description {
    color: var(--gris-oscuro);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.attraction-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gris-medio);
    font-size: 0.9rem;
}

.info-item i {
    width: 16px;
    color: var(--verde-esmeralda);
}

.attraction-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--gris-medio);
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    background: var(--gris-claro);
    color: var(--verde-esmeralda);
}

/* CTA Section */
.cta-section {
    background: var(--gradiente-verde);
    color: white;
    padding: 4rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: var(--space-xl);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 1rem 3rem;
        min-height: 50vh;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .filters-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .filter-card {
        padding: 1.5rem 1rem;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .attraction-actions {
        flex-direction: column;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 2rem;
    }
    
    .filters-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .filter-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .filter-text {
        font-size: 0.9rem;
    }
}