.menu-toggle {
    margin-right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    color: #60C9F9 !important;
    transition: all 0.3s ease;
}

.search-toggle {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    color: #60C9F9 !important;
    transition: all 0.3s ease;
}

/* Estilos Gerais */
 body > section.faq-section > div > div.text-center.mb-4 > span, body > section.social-section > div > div.content-wrapper > span{
    display: inline-flex;
    align-items: center;
    background: #C2E7F9;
    color: #032d75;
    padding: 8px 12px 8px 12px;    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.badge-section  {
    display: inline-flex
;
    align-items: center;
    background: #133d85;
    color: #60C9F9;
    padding: 8px 12px 8px 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: Titillium Web;

line-height: 24.34px;
text-align: center;
text-underline-position: from-font;
text-decoration-skip-ink: none;

}

.badge-section i {
    font-size: 14px;
} 

.navbar{
    z-index: 2222;
}

nav {
    background-color: #042e7600 !important;
}

.nav-link:focus, .nav-link:hover {
    color: #0dcaf0 !important;
}

/* Micro interações */
.badge-section i,
.faq-header i,
.instagram-link i {
    transition: transform 0.3s ease;
}

.badge-section:hover i {
    transform: scale(1.2);
}

.instagram-link:hover i {
    transform: translateX(4px);
}

.faq-header:hover i {
    transform: rotate(90deg);
}

/* Micro interações para ícones */
.badge-section i,
.contact-card .icon-wrapper i,
.contact-card .copy-btn i,
.instagram-link i {
    transition: all 0.3s ease;
}

/* Badge hover */
.badge-section:hover i {
    transform: scale(1.2);
}

/* Ícones dos cards de contato */
.contact-card .icon-wrapper {
    transition: transform 0.3s ease;
}

.contact-card:hover .icon-wrapper {
    transform: scale(1.1);
}

/* Botão de copiar */
.contact-card .copy-btn {
    transition: transform 0.2s ease;
}

.contact-card .copy-btn:hover {
    transform: translateY(-2px);
}

.contact-card .copy-btn:active {
    transform: translateY(0);
}

/* Link do Instagram */
.instagram-link:hover i {
    transform: translate(4px, -4px);
}

/* Animação de pulso para feedback de cópia */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.copy-success {
    animation: pulse 0.3s ease-in-out;
}

body{
    background-color: #E6E6E6;
}

/* Seção de Contato */
.contact-section {
    padding-top: 150px;
    padding-bottom: 100px;

    background: linear-gradient(0deg, #042E76, #042E76),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 50%);
    
    
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 600px;
    margin-top: -100px;
}

.contact-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    background-size: contain;
    height: 100%;
    background-image: url('../img/pattern-esquerdo-contato.svg');
    background-repeat: no-repeat;
    background-position: left center;
    opacity: 1;
}


.contact-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background-size: contain;
    width: 300px;
    height: 100%;
    background-image: url('../img/pattern-direito-contato.svg');
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 1;
}


body > section.contact-section > div > h1{
    color: #FFFFFF;
}

body > div > div > .side-nav{
    background-color: #ffffff00 !important;
}


.contact-section .contact-title {
    color: #FFFFFF;
    margin-bottom: 40px;
}

.contact-section .contact-card {
    background: rgba(0, 27, 78, 0.5);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    flex-direction: row;
    align-content: space-around;
    flex-wrap: nowrap;
}

.contact-section .contact-card i {
    font-size: 24px;
    color: #60C9F9;
}


.contact-card .icon-wrapper i {
    color: #032d75 !important;
    font-size: 24px;
}

.contact-section .contact-card .contact-info {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    margin-left: 20px;
    margin-right: 20px;
}

.contact-section .contact-card .copy-icon {
    margin-left: auto;
    color: #66B5F8;
    cursor: pointer;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.contact-card .icon-wrapper {
    width: 48px;
    height: 48px;
    color: black;
    background: #60C9F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card .icon-wrapper i {
    color: #fff;
    font-size: 24px;
}

.contact-card .contact-info {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.contact-card .copy-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
}

.contact-card .copy-btn i {
    font-size: 20px;
}
/* Seção FAQ */
.faq-section {
    padding: 60px 0;
    background: #E6E6E6;
}

.faq-section h2 {
    color: #042E76;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}


.faq-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #042E76;
    font-weight: 600;
}

.faq-header i {
    font-size: 24px;
    color: #0066FF;
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: #666666;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.faq-item {
    background: #e6e6e6;
    border-radius: 0px;
    margin-bottom: 16px;
    border-bottom: 1px solid #1b1b1b !important;
    overflow: hidden;
}

.faq-item.active {
    background: #ffffff;
    border: none !important;
    box-shadow: 0 4px 12px rgb(61 61 61 / 5%) !important;
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-item.active .faq-header i {
    transform: rotate(45deg);
}

.faq-item:not(.active) .faq-header i {
    transform: rotate(0deg);
}

.faq-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Seção Redes Sociais */
.social-section {
    padding: 80px 0;
    background: #E6E6E6;
    text-align: center;
    overflow: hidden;
}

.social-section .badge-section {
    margin-bottom: 16px;
}

.social-section h2 {
    color: #042E76;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.social-section .container {
    position: relative;
    max-width: 100%;
    padding: 0;
}

.social-section .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.social-section .instagram-link {
    position: absolute;
    right: 15px;
    bottom: 2px;
    color: #042E76;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}


@media (max-width: 600px) {

    /* Seção de Contato */
.contact-section {
    padding-top: 150px;
    padding-bottom: 100px;

    background: linear-gradient(0deg, #042E76, #042E76),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 50%);
    
    
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 600px;
    margin-top: -100px;
}

.contact-section::before {
    content: '';
    position: absolute;
    left: -99px !important;
    top: 0;
    width: 300px;
    background-size: contain;
    height: 100%;
    background-image: url(../img/pattern-esquerdo-contato.svg);
    background-repeat: no-repeat;
    background-position: left center;
    opacity: 1;
}

.contact-section .contact-card {

    z-index: 22;
}

.contact-section::after {
    content: '';
    position: absolute;
    right: -99px !important;    
    top: 0;
    background-size: contain;
    width: 300px;
    height: 100%;
    background-image: url('../img/pattern-direito-contato.svg');
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 1;
}


    .social-section .instagram-link {
        position: absolute;
        right: 18px;
        bottom: 65px;
        text-align: center;
        color: #042E76;
        text-decoration: none;
        font-weight: 600;
        display: flex
    ;
        align-items: center;
        gap: 8px;
        justify-content: center;
    }

    .social-section .content-wrapper {
        max-width: 1200px;
        padding: 0 15px;
        position: relative;
        text-align: left;
    }


    
  }





.social-feed-wrapper {
    position: relative;
    margin: 0 -50vw;
    left: 50%;
    right: 50%;
    width: 100vw;
}

.social-feed {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 50px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.social-feed:active {
    cursor: grabbing;
}

.social-feed::-webkit-scrollbar {
    height: 8px;
}

.social-feed::-webkit-scrollbar-track {
    background: #F5F7FA;
    border-radius: 4px;
}

.social-feed::-webkit-scrollbar-thumb {
    background: #042E76;
    border-radius: 4px;
}

.instagram-post {
    flex: 0 0 300px;
    height: 400px;
    background: #00000033;
    border-radius: 16px;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.instagram-post:hover {
    transform: translateY(-8px);
}




/* Responsivo */
@media (max-width: 992px) {
    .contact-cards {
        flex-direction: column;
        max-width: 500px;
        margin: 40px auto 0;
    }

    .social-feed {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .contact-section {
        margin-top: 0;
        padding-top: 100px;
        height: 697px;
    }
    
    .contact-section h1,
    .social-header h2 {
        font-size: 28px;
    }

    .social-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .social-feed {
        padding: 20px 20px;
    }
    
    .instagram-post {
        flex: 0 0 260px;
        height: 260px;
    }

    .contact-card {
        flex-direction: row;
        text-align: left;
        padding: 20px;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
    }

    .contact-card .contact-info {
        flex: 1;
    }

    .contact-card .copy-btn {
        margin-left: auto;
    }
}

@media (max-width: 576px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}