@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600&display=swap");

* {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    transition: all .2s linear;
}

/* Excluir imagens, ícones e elementos que não devem ter transições de tamanho */
img,
i,
svg,
.icon,
.fa,
.icon-1,
.icon-2,
.icon-3,
.theme-toggle,
.dropdown-toggle svg {
    transition: opacity .2s linear !important;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    overflow-x: hidden;
    position: relative;
}

body {
    position: relative;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: 1rem;
}

html::-webkit-scrollbar-track {
    /*o que fica abaixo da barra*/
    background: #000;
}

html::-webkit-scrollbar-thumb {
    /*cor da barra*/
    background: #ff0000;
}

body {
    background: rgba(255, 229, 185, 0.4)
}

section {
    padding: 3rem 9%;
}

/*Cabeçalho das sessões*/
.heading {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: #ff0000;
}
.heading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: .1rem;
    width: 100%;
    background: #000;;
    z-index: -1;
}
.heading span {
    font-size: 3rem;
    color: #ff0000;
    background: #000;
    padding: .5rem 1.5rem;
    border: 0.1rem solid #aaa;
    border-radius: .5rem;
}
.btn {
    margin-top: 1rem;
    display: inline-block;
    padding: 1rem 2.8rem;
    padding-right: 3rem;
    background: #ff0000;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 1.7rem;
}
.btn:hover {
    transform: scale(1.1);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 9%;
    z-index: 10000;
    background: #000;
    overflow: visible !important;
}
.header .logo {
    font-weight: bolder;
    color: #fff;
    font-size: 3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}
.header .logo span {
    color: #ff0000;
}
.header .navbar a {
    display: inline-block;
    padding: 1.5rem 2rem;
    font-size: 1.7rem;
    color: #fff;
}
.header .navbar a:hover {
    background: #ff0000;
}
#menu-btn {
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

/*class de swipwer para criar as bolinhas*/
.swiper-pagination-bullet {
    height: 2rem;
    width: 2rem;
    background: #fff;
    border-radius: 0;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #ff0000;
}



.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.2rem;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 8px;

}

.footer .box-container .box {
    text-align: center;
}

.footer .box-container .box h3 {
    font-size: 1.8rem;
    color: #ff0000;
    padding: 0.8rem 1rem;
}

.footer .box-container .box .links {
    font-size: 1.3rem;
    display: block;
    color: #000;
    padding: 0.8rem 3rem;
}

.footer .box-container .box .links:hover {
    color: #ff0000;
}

.footer .box-container .box p {
    font-size: 1.3rem;
    color: #000;
    padding: 0.8rem 3rem;
}

.footer .box-container .box p i {
    padding-right: .5rem;
    color: #ff0000;
}

/* Estilo específico para o email no footer */
.footer .box-container .box p a {
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
    border: 2px solid #fff;
}

.footer .box-container .box p a:hover {
    background: linear-gradient(135deg, #cc0000, #990000);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.5);
    text-decoration: none;
    color: #fff;
}

/*Responsividade*/
@media (max-width: 991px) {
    html {
        font-size: 55%;
        scroll-padding: 7rem;
    }
    .header {
        padding: 0 2rem;
    }

    section {
        padding: 3rem 2rem;
    }

}

@media (max-width: 768px) {
    /* Aumentar tamanho de todos os parágrafos no mobile */
    p {
        font-size: 1.6rem !important;
    }
    
    #menu-btn {
        display: inline-block;
    }

    #menu-btn.fa-times {
        transform: rotate(180deg);
    }

    .header {
        padding: 1.5rem 2rem;
        overflow: visible !important;
    }
    
    .header .logo {
        font-size: 2.2rem !important;
        max-width: 65%;
    }

    .header .navbar {
        position: absolute;
        top: 99%;
        left: 0;
        right: 0;
        background: #000;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .header .navbar a {
        display: block;
        font-size: 2rem;
    }
    
    .dropdown {
        right: 0;
        bottom: 0;
        z-index: 10002 !important;
        position: relative;
    }
    
    .dropdown-toggle {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .dropdown-menu {
        left: auto;
        right: 0;
        min-width: 200px;
        z-index: 10003 !important;
        position: absolute !important;
    }
    
    section {
        padding: 2rem 1.5rem;
    }
    
    .heading span {
        font-size: 2.5rem;
        padding: 0.4rem 1rem;
    }
}

/* ---------------- DROPDOWN CUSTOM ---------------- */
.dropdown {
  position: relative;
  bottom: 5px;
  display: inline-block;
  right: 5%;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: auto;
  right: 0;
  z-index: 10002;
  min-width: 250px;
  padding: 0.5rem 0;
  font-size: 1.8rem;
  margin: 0;
  list-style: none;
  background-color: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.dropdown-item {
  width: 100%;
  padding: 0.8rem 1.5rem;
  margin: 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  transition: background-color 0.2s ease;
  display: block;
  box-sizing: border-box;
  position: relative;
}
.dropdown-item:hover {
  background-color: rgba(255, 0, 0, 0.2);
  color: #fff;
}

.dropdown-divider {
  height: 1px;
  margin: 0.5rem 0;
  padding: 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
}

.dropdown.show .dropdown-menu {
  display: block;
}

.dropdown-toggle {
  padding: 8px 12px;
  font-size: 14px;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 4px !important;
  color: #fff !important;
}

.dropdown-toggle:focus,
.dropdown-toggle:hover {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  color: #fff !important;
}

.dropdown-toggle i {
  font-size: 16px;
  color: #fff;
  margin-right: 6px;
}

.dropdown-toggle svg {
  color: #fff;
  fill: #fff;
}


@media (max-width: 480px) {
    html {
        font-size: 50%;
        scroll-padding-top: 8rem;
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .header {
        padding: 1rem 1.5rem;
        overflow: visible !important;
        position: relative;
    }
    
    .header .logo {
        font-size: 2.2rem !important;
        max-width: 70%;
        line-height: 1.2;
    }
    
    .header .logo span {
        display: block;
        font-size: 1.8rem !important;
    }
    
    .dropdown {
        right: 0;
        bottom: 0;
        z-index: 10002 !important;
        position: relative;
        display: block !important;
        visibility: visible !important;
    }
    
    .dropdown-toggle {
        padding: 6px 10px;
        font-size: 12px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: transparent !important;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        border-radius: 4px !important;
    }
    
    .dropdown-toggle svg {
        fill: #fff !important;
        color: #fff !important;
    }
    
    .dropdown-toggle:focus,
    .dropdown-toggle:hover {
        border: 1px solid rgba(255, 255, 255, 0.7) !important;
    }
    
    .dropdown-menu {
        font-size: 1.6rem;
        min-width: 220px;
        z-index: 10003 !important;
        position: absolute !important;
        display: none;
        padding: 0.6rem 0;
    }
    
    .dropdown.show .dropdown-menu {
        display: block !important;
    }
    
    section {
        padding: 2rem 1rem;
    }
    
    .heading {
        margin-bottom: 2rem;
    }
    
    .heading span {
        font-size: 2rem;
        padding: 0.3rem 0.8rem;
    }
    
    .footer .box-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 5px;
    }
    
    .footer .box-container .box .links,
    .footer .box-container .box p {
        padding: 0.8rem 1.5rem;
        font-size: 1.2rem;
    }
    
    /* Email no footer - Mobile */
    .footer .box-container .box p a {
        font-size: 1.3rem;
        padding: 0.4rem 0.8rem;
        margin-top: 0.3rem;
    }
}

