.mb-2r{
    margin-bottom: 2rem;
}
.about-section{
    position: relative;
    overflow: hidden;
}
.sugeira{
    position: absolute;
    top: 0;
    opacity: .4;
    height: 100%;
    width:100%;
}
/* Hero Section Styles */
.hero-section {
    background-color: #000;
    height: 75vh;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-description {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    max-width: 500px;
}
.hero-buttons{
    gap: 10px;
}
.differential-number{
    font-weight: 700;
}
.hero-buttons .btn {
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-buttons .btn-warning {
    background-color: #b98335;
    border-color: #b98335;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hero-buttons .btn-warning:hover {
    background-color: #dca455;
    border-color: #dca455;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: white;
}

.hero-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    color: white
}

.scroll-indicator i {
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Video Section Styles */
.video-title {
    font-size: 2.5rem;
}

.video-container .ratio {
    border-radius: 1rem;
    overflow: hidden;
}

/* About Section Styles */
.about-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.about-card {
    transition: all 0.3s ease;
    border-left-width: 4px !important;
    border-left-style: solid;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.about-card .border-start {
    border-left-width: 4px !important;
}

.about-card.border-success .border-start {
    border-left-color: #198754 !important;
}

.about-card.border-warning .border-start {
    border-left-color: #b98335 !important;
}

.about-card.border-primary .border-start {
    border-left-color: #0d6efd !important;
}

/* Facilities Section Styles */
.facilities-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.facility-card {
    transition: all 0.3s ease;
    border-radius: 1rem !important;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.facility-img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover .facility-img {
    transform: scale(1.1);
}

.facility-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    z-index: 1;
}

/* Programs Section Styles */
.programs-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.program-card {
    transition: all 0.3s ease;
    border-radius: 1rem !important;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.program-icon {
    transition: all 0.3s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.1);
}

/* Differentials Section Styles */
.differentials-title {
    font-size: 3rem;
    line-height: 1;
}

.differential-card {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
    border-radius: 1rem;
}

.differential-card:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .video-title {
        font-size: 2rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .facilities-title {
        font-size: 2rem;
    }

    .programs-title {
        font-size: 2rem;
    }

    .differentials-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .video-title {
        font-size: 1.75rem;
    }

    .video-description {
        font-size: 1rem !important;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .about-text p {
        font-size: 0.95rem !important;
    }

    .facilities-title {
        font-size: 1.75rem;
    }

    .facility-img {
        height: 200px;
    }

    .programs-title {
        font-size: 1.75rem;
    }

    .differentials-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .video-title {
        font-size: 1.5rem;
    }

    .video-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-card {
        margin-bottom: 1rem !important;
    }

    .facilities-title {
        font-size: 1.5rem;
    }

    .facility-img {
        height: 180px;
    }

    .facilities-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .programs-title {
        font-size: 1.5rem;
    }

    .programs-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .differentials-title {
        font-size: 1.5rem;
    }

    .differentials-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}