/* Beto Carrero Page Styles */

/* Hero Section */
.beto-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('images/beto_hero_poster.jpg');
    /* Placeholder Roller Coaster/Park Image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.beto-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.beto-tag {
    display: inline-block;
    background-color: #ED1C24;
    /* Beto Red */
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.beto-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #FFCC00, #ED1C24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    /* Fallback for text stroke logic if needed, but gradient text is nice */
    /* To make it readable on image, sometimes drop-shadow filter works better on the element, 
       but for gradient text it's tricky. Let's keep it simple white if gradient fails or add text-shadow to container */
}

/* Fallback for better contrast */
@supports (-webkit-text-stroke: 1px black) {
    .beto-hero h1 {
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    }
}

.beto-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Filters */
.attraction-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #ED1C24;
    color: #ED1C24;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ED1C24;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(237, 28, 36, 0.3);
}

/* Attractions Grid */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.attraction-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.attraction-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.category-badge.radical {
    background-color: #D32F2F;
}

.category-badge.familia {
    background-color: #1976D2;
}

.category-badge.infantil {
    background-color: #388E3C;
}

.category-badge.show {
    background-color: #FBC02D;
    color: #333;
}

.attraction-info {
    padding: 24px;
}

.attraction-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.attraction-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Package Section Specifics */
.section-badge-yellow {
    background-color: #FFD700;
    color: #000;
    font-weight: bold;
    padding: 8px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 15px;
    font-size: 1rem;
}

.beto-card-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #D500F9;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.text-green {
    color: #4CAF50 !important;
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    background-color: #FAFAFA;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.beto-price-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.beto-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.beto-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.beto-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.beto-input-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.beto-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #333;
}

.beto-card-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.beto-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.beto-card-features li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.beto-card-features li i {
    color: #333;
    font-size: 0.8rem;
}

.beto-card-price {
    margin-top: auto;
    margin-bottom: 20px;
}

.beto-card-price small {
    display: block;
    font-size: 0.85rem;
    color: #777;
}

.beto-card-price strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
}

/* Updated Buttons to match reference */
.btn-price-site {
    background-color: #FFD700;
    /* Yellow */
    color: #000;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: background 0.3s;
}

.btn-price-site:hover {
    background-color: #FFC400;
}

.btn-price-whatsapp {
    background-color: #4CAF50;
    /* Green */
    color: white;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-price-whatsapp:hover {
    background-color: #43A047;
}

.beto-card-footer-note {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 0.75rem;
    color: #888;
}

/* CTA Section */
.beto-cta {
    background: linear-gradient(135deg, #ED1C24 0%, #B71C1C 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.beto-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.beto-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .beto-hero h1 {
        font-size: 2.5rem;
    }

    .attraction-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}