
      /* Hero Section */
.info-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('/assets/img/3.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
}


        .info-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .info-hero p {
            font-size: 1.3rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

/* Sección de Información para Visitantes */
.info-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #2e7d32;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

/* Estilos para Horarios */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2e7d32;
}

.day {
    font-weight: 600;
    color: #333;
}

.time {
    color: #2e7d32;
    font-weight: 600;
    background: #e8f5e9;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.schedule-note {
    margin-top: 1rem;
    padding: 1rem;
    background: #fff3e0;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

.schedule-note p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
}

/* Estilos para Tarifas */
.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.price-row:hover {
    background: #e8f5e9;
}

.price-row.highlight {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border: 2px solid #2e7d32;
}

.category {
    font-weight: 600;
    color: #333;
}

.price {
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.1rem;
}

.price-note {
    margin-top: 1rem;
    padding: 1rem;
    background: #e3f2fd;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.price-note p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
}

/* Estilos para Normas */
.rules-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rule-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
}

.rule-item.allowed {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.rule-item.prohibited {
    background: #ffebee;
    border-left: 4px solid #f44336;
}

.rule-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.rule-content strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.rule-content p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
    color: #666;
}

/* Información Adicional */
.additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-box h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.info-box li:before {
    content: "✓";
    color: #2e7d32;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    border-radius: 15px;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary {
    background: white;
    color: #2e7d32;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
}
