/* Classes para o focus visível */
:focus-visible {
    outline: 3px solid #C46ED8;
    outline-offset: 2px;
}

/* Estilos para os botões roxos */
.btn-roxo {
    background-color: #C46ED8;
    color: white;
    font-weight: bold;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.btn-roxo:hover {
    background-color: #8C40B8;
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

/* estilos CSS personalizados */
body {
    font-family: 'Open Sans', sans-serif;
    color: #4A4A4A;
    background-color: #F8F8F8;
}

.nav-button {
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.nav-button:hover {
    background-color: #C46ED8;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
    fill: #3B2C5B;
}

.tab-button {
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}
.tab-button.active-tab {
    background-color: #3B2C5B;
    color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}
.tab-button:not(.active-tab):hover {
    background-color: #EBE0F5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.tab-pane.active-pane {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.carousel-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease-in-out;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}
.carousel-slide.active {
    opacity: 1;
    position: relative;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(59, 44, 91, 0.7);
    color: white;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-button:hover {
    background-color: rgba(196, 110, 216, 0.9);
    transform: translateY(-50%) scale(1.1);
}
.carousel-button.prev {
    left: 20px;
}
.carousel-button.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.indicator-dot.active {
    background-color: #C46ED8;
    transform: scale(1.2);
}

.card-style {
    border-radius: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-style:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.content-link {
    color: #C46ED8;
    transition: color 0.3s ease;
}
.content-link:hover {
    color: #8C40B8;
    text-decoration: underline;
}

#menuToggleBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #3B2C5B;
    color: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    opacity: 0;
}

#menuToggleBtn.show {
    opacity: 1;
}

#menuToggleBtn:hover {
    background-color: #C46ED8;
    transform: translateY(-5px) scale(1.1);
}

#headerMenuBtn {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.3s ease;
    padding: 5px;
    margin-left: auto;
}

#headerMenuBtn:hover {
    transform: scale(1.1);
    color: #C46ED8;
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: flex;
    justify-content: flex-end;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.menu-overlay.open {
    visibility: visible;
    opacity: 1;
}

.side-menu {
    width: 80%;
    max-width: 350px;
    background-color: #3B2C5B;
    padding: 30px;
    box-shadow: -10px 0 20px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    transition: transform 0.4s ease-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    overflow-y: auto;
}

.menu-overlay.open .side-menu {
    transform: translateX(0);
}

.side-menu a {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px 0;
    width: 100%;
    text-align: left;
    transition: color 0.3s ease, transform 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.side-menu a:last-child {
    border-bottom: none;
}

.side-menu a:hover {
    color: #C46ED8;
    transform: translateX(10px);
}

.close-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s ease;
}

.close-menu-btn:hover {
    transform: rotate(90deg);
}

.main-header {
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.main-header.hidden-header {
    transform: translateY(-100%);
    box-shadow: none;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}