/* Link_Pagos_Pianissimo - Custom Design System */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --success-color: #198754;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.8);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
}

h1,
h2,
h3,
.section-title {
    font-family: 'Montserrat', sans-serif;
}

/* Hero Carousel */
#heroCarousel {
    width: 100%;
}

.carousel-item {
    height: 65vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.carousel-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    top: 0;
    bottom: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Fade Effect Adjustment */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 0.8s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

/* Payment Cards */
.payment-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.account-box {
    border: 1px dashed #ccc;
    cursor: pointer;
    transition: background 0.2s;
}

.account-box:hover {
    background-color: #e9ecef !important;
}

/* Section Title Underline */
.title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Custom Buttons */
.btn-submit-payment {
    background: linear-gradient(45deg, #0d6efd, #00d2ff);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-submit-payment:hover {
    background: linear-gradient(45deg, #0b5ed7, #00b8e6);
    transform: scale(1.05);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .display-4 {
        font-size: 2.5rem;
    }
}