/* public/css/style.css */
:root {
    --primary-color: #007bff;
    --secondary-color: #28a745;
}

.hero-section {
    color: white;
    position: relative;
    overflow: hidden;
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.max-w-2xl {
    max-width: 42rem;
}

.card-package {
    transition: transform 0.3s ease;
    border: none;
    overflow: hidden;
}

.card-package:hover {
    transform: translateY(-10px);
}

.price-tag {
    color: #d9534f;
    font-weight: bold;
    font-size: 1.25rem;
}

.btn-floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    text-decoration: none;
}

.btn-floating-whatsapp:hover {
    color: white;
    background-color: #128c7e;
}
