body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #000 20%, #FFD700 150%);
    color: #f5f5f5;
    margin: 0;
}

header h1 {
    color: #FFD700;
    font-weight: 700;
}

#carouselFundo {
    width: 80%;
    height: 100vh;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

@media (max-width: 768px) {
    #carouselFundo {
        width: 100%;
        height: 40vh;
        margin: 20px auto;
    }

    main.container {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}

#carouselFundo .img-fundo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(85%);
    transition: opacity 1.5s ease-in-out;
    border-radius: 20px;
}

strong {
    color: #FFD700;
    font-weight: 700;
}


header p {
    color: #ddd;
}

.card {
    background-color: #1a1a1a;
    border: 2px solid #FFD700;
    color: #fff;
}

.cardProfessor {
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}

.cardProfessor:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
    border-color: #fff;
}

.cardProfessor::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 215, 0, 0.15);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.cardProfessor:hover::before {
    top: 0;
}

.cardProfessor h4,
.cardProfessor p {
    position: relative;
    z-index: 1;
}

.cardProfessor img {
    transition: all 0.4s ease-in-out;
}

.cardProfessor:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
}

.gallery .gallery-item img,
.gallery .gallery-item video {
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery .gallery-item:hover .overlay {
    opacity: 1;
}

.gallery .overlay i {
    font-size: 3rem;
    color: #FFD700;
}

.gallery .gallery-item.video .overlay i::before {
    content: "\25B6";
}

fieldset {
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

legend {
    font-weight: 600;
    color: #FFD700;
    padding: 0 10px;
}

.btn-custom {
    background-color: #FFD700;
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #e6c200;
    color: #000;
}

footer {
    color: #aaa;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.flatpickr-calendar {
    background-color: #fdf3c0;
    border: 2px solid #000;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
}

.flatpickr-months {
    background-color: #ffc107;
    color: #000;
}

.flatpickr-weekday {
    color: #000;
    font-weight: 500;
}

.flatpickr-day {
    border-radius: 5px;
    transition: 0.2s;
}

.flatpickr-day:hover {
    background-color: #000;
    color: #ffc107;
}

.flatpickr-day.selected {
    background-color: #000;
    color: #ffc107;
}

.btn-custom {
    background-color: #ffc107;
    color: #000;
    border: 2px solid #000;
    transition: 0.3s;
}

.btn-custom:hover {
    background-color: #000;
    color: #ffc107;
    transform: scale(1.05);
}

#biografiaCarousel .carousel-inner {
    max-width: 800px;
    margin: 0 auto;
}

#biografiaCarousel .carousel-item {
    text-align: center;
}

#biografiaCarousel .carousel-item img {
    max-width: 100%;
    height: auto;
    max-width: 800px;
    height: 450px;
    display: block;
    margin: 0 auto;
    border-radius: 0.5rem;
}

#biografiaCarousel .carousel-item iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    display: block;
    margin: 0 auto;
    border-radius: 0.5rem;
}

h2 {
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 10px;
}

p {
    color: #ddd;
    font-size: 15px;
}

#qrcode {
    width: 200px;
    margin: 15px 0;
    border: 2px solid #FFD700;
    border-radius: 8px;
}

.pix-key {
    background: #000;
    border: 2px solid #FFD700;
    padding: 12px;
    border-radius: 8px;
    margin: 15px 0;
    cursor: pointer;
    font-weight: 600;
    color: #FFD700;
}

.pix-key:hover {
    background: #FFD700;
    color: #000;
}

small {
    display: block;
    margin-bottom: 20px;
    color: #aaa;
}

.checkbox {
    margin: 15px 0;
    text-align: left;
    font-size: 14px;
}

.checkbox label {
    cursor: pointer;
}

.funcionario-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.btn-custom {
    background-color: #FFD700;
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #000;
    padding: 14px 20px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-custom:hover:enabled {
    background-color: #000;
    color: #FFD700;
    transform: scale(1.05);
}

.btn-custom:disabled {
    background-color: #444;
    color: #888;
    border: 2px solid #333;
    cursor: not-allowed;
}

.modal-content h3 {
    margin-bottom: 15px;
    color: #FFD700;
    font-weight: 700;
}

.modal-content p {
    margin: 15px 0;
    font-size: 15px;
    color: #f5f5f5;
}

.close-btn {
    background-color: #FFD700;
    color: #000;
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
}

.close-btn:hover {
    background: #000;
    color: #FFD700;
    transform: scale(1.05);
}

.menu-link {
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: #FFD700 !important;
}


.gallery img,
.gallery video {
    cursor: pointer;
    border: 2px solid #FFD700;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery img:hover,
.gallery video:hover {
    transform: scale(1.05);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(87%) sepia(79%) saturate(747%) hue-rotate(2deg) brightness(103%) contrast(103%);
}

.modal-content {
    background: #111;
}

.plan-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-color: #111;
    color: #fff;
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.plan-card .price {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.plan-card .price span {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
}

.btn-plan {
    background: #FFD700;
    color: #000;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-plan:hover {
    background: #000;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.funcionario-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.funcionario-card {
    transition: all 0.3s ease;
    cursor: pointer;
    color: black;
}

.stars i {
    font-size: 1.6rem;
    cursor: pointer;
    color: #ccc;
}

.stars i.active {
    color: #ffc107;
}

.form-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    margin-bottom: 50px;
}

.badge-funcionario {
    display: inline-block;
    background: gold;
    color: black;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 8px;
    margin-top: 5px;
    animation: brilho 1.5s infinite alternate;
}

.cardProfessor.vencedor {
    border: 3px solid gold;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

@keyframes brilho {
    from {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.4);
    }

    to {
        box-shadow: 0 0 15px rgba(255, 215, 0, 1);
    }
}

.navbar-nav .barra {
    color: #FFD700;
    opacity: 0.6;
    font-weight: bold;
}

@media (max-width: 991.98px) {
    .navbar-nav .barra {
        display: none !important;
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-size: 100%;
    filter: brightness(0) saturate(100%) invert(83%) sepia(49%) saturate(620%) hue-rotate(13deg) brightness(105%) contrast(101%);
    opacity: 0.9;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    transform: scale(1.2);
    opacity: 1;
    transition: all 0.3s ease;
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    z-index: 10;
}

.plan-section {
    padding: 50px 20px;
    border-radius: 25px;
    margin-bottom: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.plan-section.comum {
    background: linear-gradient(135deg, #2d3436, #000000);
}

.plan-section.especiais {
    background: linear-gradient(135deg, #1b5e20, #43a047);
}

.plan-section.combos {
    background: linear-gradient(135deg, #6a1b9a, #8e24aa);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}