@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}

:root {
    --bg-color: #ffffff;
    --bg-color1: #e7f1f1;
    --bg-color2: #fdfafa;
    --text-color: #333;
    --header-color: #fff;
    --scrollbar-color: #929292;
    --scrollbar-bg: #bdbaba;
    --scrollbar-colorconfig: #6b6b6b;
    --scrollbar-bgconfig: #525252;
    --border-color: #c9c9c9;
    --card-background: #fff;
    --text-color1: #333;
    --input-color: #f1f1f1;
    --footer-color: linear-gradient(90deg, #131515, #1f1f1f);
    --contato-color: linear-gradient(to right, #111418, #1b1e24);
}

.dark-mode {
    --bg-color: #1b1b1b;
    --bg-color1: #494949;
    --bg-color2: #494949;
    --text-color: #f8f8f8;
    --header-color: rgb(18, 17, 19);
    --scrollbar-color: #242424;
    --scrollbar-bg: #161616;
    --border-color: #1d1e29;
    --card-background: rgb(46, 46, 46);
    --text-color1: #b3b3b3;
    --input-color: #c5c5c5;
    --footer-color: rgb(13, 13, 14);
    --contato-color: rgb(20, 20, 20);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth !important;
}

body {
    padding-left: 80px;
    transition: padding-left 0.3s ease;
    font-family: "Montserrat", sans-serif;
    background-color: var(--bg-color);
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-color);
    border-radius: 8px;
}

body::-webkit-scrollbar-track {
    background-color: var(--scrollbar-bg);
}

.modal-galeria-miniaturas::-webkit-scrollbar {
    width: 12px;
}

.modal-galeria-miniaturas::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-color);
    border-radius: 8px;
}

.modal-galeria-miniaturas::-webkit-scrollbar-track {
    background-color: var(--scrollbar-bg);
}

#btnTop {
    all: unset;
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
}

#notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #323232;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 15px;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#notification.show {
    opacity: 1;
    transform: translateY(0);
}

#notification.success {
    background-color: #2ecc71;
}

#notification.error {
    background-color: #e74c3c;
}

.selo-fixo-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    pointer-events: none;
    transition: all 0.3s ease;
}

.selo-fixo {
    display: flex;
    align-items: center;
}

.selo-fixo-imagem {
    width: 150px;
    height: 120px;
    margin-right: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.selo-fixo-texto {
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 80px;
    background: var(--header-color);
    border-right: 1px solid var(--border-color);
    transition: width 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.sidebar:hover {
    width: 240px;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 15px;
}

.sidebar-logo .logoNavOne {
    width: 75px;
    height: auto;
    flex-shrink: 0;
    margin-left: 8px;
    margin-top: 8px;
}

.sidebar-logo .logoNavTwo {
    position: absolute;
    left: 110px;
    width: 80px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar:hover .sidebar-logo .logoNavTwo {
    opacity: 1;
}

.sidebar-link {
    flex-grow: 1;
    margin-top: 10px;
    background-color: var(--header-color);
}

.sidebar-link ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-color);
}

.sidebar-link li {
    margin-bottom: 5px;
    color: var(--text-color);
}

.sidebar-link a.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

.sidebar-link a.nav-item:hover {
    background: var(--header-color);
    color: var(--text-color);
}

.nav-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.sidebar-link .nav-link {
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 16px;
}

.sidebar:hover .sidebar-link .nav-link {
    opacity: 1;
}

.toggle-switch {
    width: 35px;
    height: 20px;
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.4s ease;
}

.toggle-switch input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 40px;
    height: 20px;
    background-color: #ccc;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
    outline: none;
    margin-right: 10px;
}

.toggle-switch input[type="checkbox"]:checked {
    background-color: #4d4d4d;
}

.toggle-switch input[type="checkbox"]::before {
    content: "";
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.toggle-switch input[type="checkbox"]:checked::before {
    transform: translateX(20px);
}

.sidebar-footer {
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 0px 10px;
}

.sidebar-footer .sidebar-selos {
    width: 100%;
}

.sidebar:hover .sidebar-footer {
    opacity: 1;
}

.sidebar:hover .sidebar-link .toggle-switch {
    opacity: 1;
}

.sidebar:hover .sidebar-link .nav-link {
    opacity: 1;
}

.nav-link a {
    text-decoration: none;
    font-size: 16px;
    color: #0A2635;
}

.tema {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 10px 15px;
}

.tema span {
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 14px;
    width: 0;
    overflow: hidden;
    margin-left: 25px;
    color: var(--text-color);
}

.sidebar:hover .tema span {
    opacity: 1;
    width: auto;
}

.hamburger {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 110;
    cursor: pointer;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}

.home-img {
    width: 100%;
    padding: 0;
    line-height: 0;
    font-size: 0;
}

.home-img>div {
    width: 100%;
}

.home-img img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-missao-conteudo::-webkit-scrollbar {
    width: 12px;
}

.modal-missao-conteudo::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-color);
    border-radius: 8px;
}

.modal-missao-conteudo::-webkit-scrollbar-track {
    background-color: var(--scrollbar-bg);
}

.modal-missao-simples {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-missao-conteudo {
    background: var(--card-background);
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.modal-missao-fechar {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: var(--text-color);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.modal-missao-fechar:hover {
    background: rgba(0, 0, 0, 0.1);
}

.modal-missao-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.modal-missao-header h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-missao-subtitulo {
    color: var(--text-color1);
    font-size: 1rem;
}

.modal-missao-corpo {
    margin-bottom: 25px;
}

.modal-missao-secao {
    margin-bottom: 25px;
    padding: 15px;
    background: var(--bg-color2);
    border-radius: 8px;
    border-left: 4px solid #e05d00;
}

.modal-missao-secao h3 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.modal-missao-secao p {
    color: var(--text-color1);
    margin-bottom: 12px;
    line-height: 1.6;
}

.modal-missao-secao ul {
    list-style: none;
    padding-left: 20px;
    margin: 15px 0;
}

.modal-missao-secao li {
    color: var(--text-color1);
    margin-bottom: 8px;
    padding-left: 10px;
    position: relative;
}

.modal-missao-secao li:before {
    content: "•";
    color: #e05d00;
    position: absolute;
    left: -15px;
    font-size: 1.4rem;
    line-height: 1;
}

.modal-missao-rodape {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    color: var(--text-color1);
    font-size: 0.95rem;
    font-style: italic;
}

.modal-termos-conteudo-simples::-webkit-scrollbar {
    width: 12px;
}

.modal-termos-conteudo-simples::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-color);
    border-radius: 8px;
}

.modal-termos-conteudo-simples::-webkit-scrollbar-track {
    background-color: var(--scrollbar-bg);
}

.modal-termos-simples {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-termos-conteudo-simples {
    background: var(--card-background);
    border-radius: 12px;
    width: 100%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.modal-termos-fechar-simples {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: var(--text-color);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.modal-termos-fechar-simples:hover {
    background: rgba(0, 0, 0, 0.1);
}

.modal-termos-header-simples {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.modal-termos-header-simples h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-termos-subtitulo-simples {
    color: var(--text-color1);
    font-size: 1rem;
}

.modal-termos-corpo-simples {
    margin-bottom: 25px;
}

.termos-item-simples {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-color);
}

.termos-item-simples:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.termos-item-simples h3 {
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #e05d00;
}

.termos-item-simples p {
    color: var(--text-color1);
    line-height: 1.5;
    font-size: 0.95rem;
}

.modal-termos-rodape-simples {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    color: var(--text-color1);
    font-size: 0.9rem;
}

.termos-nota-rodape {
    font-style: italic;
    margin-top: 5px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.modal-politica-conteudo::-webkit-scrollbar {
    width: 12px;
}

.modal-politica-conteudo::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-color);
    border-radius: 8px;
}

.modal-politica-conteudo::-webkit-scrollbar-track {
    background-color: var(--scrollbar-bg);
}

.modal-politica-simples {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-politica-conteudo {
    background: var(--card-background);
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.modal-politica-fechar {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: var(--text-color);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.modal-politica-fechar:hover {
    background: rgba(0, 0, 0, 0.1);
}

.modal-politica-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.modal-politica-header h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-politica-subtitulo {
    color: var(--text-color1);
    font-size: 1rem;
}

.modal-politica-corpo {
    margin-bottom: 25px;
}

.modal-politica-secao {
    margin-bottom: 25px;
    padding: 15px;
    background: var(--bg-color2);
    border-radius: 8px;
    border-left: 4px solid #e05d00;
}

.modal-politica-secao h3 {
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-politica-secao p {
    color: var(--text-color1);
    margin-bottom: 10px;
    line-height: 1.5;
}

.modal-politica-secao ul {
    list-style: none;
    padding-left: 20px;
}

.modal-politica-secao li {
    color: var(--text-color1);
    margin-bottom: 5px;
    padding-left: 10px;
    position: relative;
}

.modal-politica-secao li:before {
    content: "✓";
    color: #e05d00;
    position: absolute;
    left: -15px;
    font-weight: bold;
}

.modal-politica-rodape {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    color: var(--text-color1);
    font-size: 0.9rem;
}

.modal-politica-rodape p {
    margin-bottom: 5px;
}

.section01 {
    padding: 130px 0px;
    flex-direction: column;
    align-items: center;
    display: flex;
}

.section01 h1 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-color);
}

.section01 .rod01 {
    width: 135px;
    height: auto;
}

.section01 .rod02 {
    width: 80px;
    height: auto;
}

.subtitle {
    font-size: 1.2rem;
    margin-top: 6px;
    color: var(--text-color1);
}

.section02 {
    flex-direction: column;
    align-items: center;
    display: flex;
    color: var(--text-color);
}

.section02 h1 {
    font-size: 1.8rem;
    font-weight: 500;
}

.section02 .links {
    margin-top: 10px;
}

.section02 a {
    color: #e05d00;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1rem;
}

.section03 {
    padding: 150px 0px;
    flex-direction: column;
    align-items: center;
    display: flex;
    color: var(--text-color);
}

.section03 h1 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.section03 h2 {
    font-size: 1rem;
    color: var(--text-color1);
    font-weight: 400;
    margin-top: 8px;
}

.selos-container {
    max-width: 800px;
    margin: 80px auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.selo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.selo img {
    width: 180px;
    height: auto;
    flex-shrink: 0;
}

.selo p {
    font-size: 1.1rem;
    text-align: justify;
    max-width: 45%;
    color: var(--text-color1);
    line-height: 1.5;
}

.section04 {
    text-align: center;
    color: var(--text-color);
}

.section04 h1 {
    font-size: 2rem;
    font-weight: 600;
}

.section04 h2 {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-color1);
    margin-top: 6px;
}

.servicos-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
    flex-wrap: wrap;
}

.servico {
    text-align: center;
    width: 200px;
}

.servico img {
    width: 200px;
    height: auto;
    margin-bottom: 25px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.servico img:hover {
    transform: scale(1.1);
    opacity: 1;
}

.servico h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 500;
}

.servico p {
    font-size: 1rem;
    color: var(--text-color1);
}

.modal-galeria-fotos {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#galeria-fotos-container {
    margin: 5px;
}

.modal-galeria-fotos.modal-galeria-aberto {
    display: flex;
    opacity: 1;
}

.modal-galeria-conteudo {
    background: var(--card-background);
    border-radius: 16px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    padding: 20px;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.modal-galeria-fechar {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: var(--text-color);
    cursor: pointer;
    z-index: 10;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.modal-galeria-fechar:hover {
    background: rgba(0, 0, 0, 0.1);
}

.modal-galeria-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.modal-galeria-titulo {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
}

.modal-galeria-contador {
    font-size: 1.2rem;
    color: var(--text-color1);
    font-weight: 500;
}

.modal-galeria-slides {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
}

.modal-galeria-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-galeria-slide.modal-galeria-slide-ativo {
    opacity: 1;
    position: relative;
}

.modal-galeria-imagem {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-galeria-navegacao {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.modal-galeria-botao {
    pointer-events: all;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.2s;
}

.modal-galeria-botao:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.modal-galeria-miniaturas {
    display: flex;
    gap: 10px;
    padding: 15px 0;
    overflow-x: auto;
    border-top: 1px solid var(--border-color);
}

.modal-galeria-miniatura {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.2s;
    border: 2px solid transparent;
}

.modal-galeria-miniatura:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.modal-galeria-miniatura.modal-galeria-miniatura-ativa {
    opacity: 1;
    border-color: var(--text-color);
}

.modal-galeria-miniatura img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sectionGaleira {
    margin: 0 auto;
    display: block;
    text-align: center;
    margin-top: 4%;
    width: 70%;
}

.hero {
    margin: 5px
}

.imgcarrosel {
    width: 100%;
    height: 450px;
}

.hero .viewport {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero .slides {
    display: flex;
    transition: transform .6s cubic-bezier(.22, .61, .36, 1);
    height: auto;
}

.hero .slide {
    min-width: 100%;
    max-height: 450px;
    aspect-ratio: 1240 / 380;
    background: linear-gradient(90deg, #4a6fa5, #2c5282);
    display: grid;
    place-items: center;
    position: relative;
    color: rgb(255, 255, 255);
}

.hero .slide:nth-child(2) {
    background: linear-gradient(90deg, #e67e22, #d35400);
}

.hero .slide:nth-child(3) {
    background: linear-gradient(90deg, #9b59b6, #8e44ad);
}

.hero .slide .h-tag {
    position: absolute;
    left: 32px;
    bottom: 32px;
    background: rgba(0, 0, 0, 0.363);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .controls {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    pointer-events: none;
}

.hero .arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
    display: grid;
    place-items: center;
    cursor: pointer;
    color: white;
    pointer-events: auto;
    transition: all 0.2s ease;
}

.hero .arrow:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

.dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 16px 0;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background: var(--brand);
    transform: scale(1.2);
}

.galeriaentrada {
    padding: 20px;
}

.image-container a,
.image-container .clickable-gallery {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.image-container .clickable-gallery {
    position: relative;
}

.image-container:hover .clickable-image {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 100%;
    min-width: none;
    height: auto;
}

.overlay {
    width: 100%;
    max-width: 100%;
    min-width: none;
    margin: 0 auto;
    display: block;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: background-color 0.3s;
}

.image-container:hover .overlay {
    background-color: rgba(0, 0, 0, 0.9);
    transform: scale(1.06);
    border-radius: 8px;
    transition: 0.2s;
    width: 100%;
    min-width: 100%;
    max-width: none;
    height: auto;
}

.text {
    color: white;
    font-size: 50px;
    text-align: center;
    padding: 10px;
    text-decoration: none;
}

.clickable-image {
    width: 100%;
    min-width: none;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.clickable-image:hover {
    transform: scale(1.05);
    border-radius: 8px;
    transition: 0.22;
}

.section05 {
    text-align: center;
    color: var(--text-color);
}

.section05 h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 2%;
}

.section05 h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-color1);
    margin-top: 6px;
}

.sacaria-container {
    display: flex;
    align-items: stretch;
    background: var(--card-background);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1000px;
    margin: auto;
    margin-top: 2%;
}

.sacaria-imagem {
    width: 40%;
}

.sacaria-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sacaria-conteudo {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    text-align: left;
}

.sacaria-titulo {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.3;
}

.sacaria-texto {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color1);
    margin-bottom: 20px;
}

.sacaria-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.sacaria-logo {
    width: 30%;
    margin-top: 1%;
}

.sacaria-logo img {
    width: 70%;
}

.sacaria-botao {
    background-color: #111;
    color: #fff;
    padding: 12px 36px;
    border-bottom-right-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease;
}

.sacaria-botao:hover {
    background-color: #333;
    transform: scale(1.03);
}

.modal-sacaria {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-conteudo img {
    border-radius: 15px;
}

.modal-conteudo {
    background: var(--card-background);
    border-radius: 14px;
    width: 80%;
    max-width: 950px;
    gap: 30px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease;
    position: relative;
    display: flex;
    align-items: stretch;
}

.conteudo1 {
    width: 50%;
    float: right;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-titulo {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.modal-texto {
    font-size: 15px;
    color: var(--text-color1);
    line-height: 1.6;
}

.modal-fechar {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-fechar:hover {
    color: #111;
}

.section06 {
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.biografia-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.biografia-titulo {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 20px;
}

.biografia-subtitulo {
    font-size: 1.2rem;
    color: var(--text-color1);
    margin-bottom: 60px;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.carousel-view {
    overflow: hidden;
    width: 1020px;
}

.biografia-cards {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

.card-rodrigo {
    background: var(--card-background);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    width: 320px;
    flex-shrink: 0;
    text-align: left;
    transition: transform 0.3s;
}

.card-rodrigo .rod01 {
    width: 100px;
    height: auto;
}

.card-rodrigo:hover {
    transform: translateY(-10px);
}

.card-imagem {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.card-conteudo {
    padding: 20px;
}

.card-titulo {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 12px;
}

.card-texto {
    font-size: 1rem;
    color: var(--text-color1);
    line-height: 1.6;
}

.linha-black {
    height: 1.5px;
    width: 100%;
    background-color: #000;
    margin-bottom: 5%;
}

.carousel-btn {
    background: none;
    border: none;
    color: var(--text-color1);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-btn:hover {
    opacity: 1;
    transform: scale(1.2);
}

.carousel-btn.prev {
    margin-right: 10px;
}

.carousel-btn.next {
    margin-left: 10px;
}

.section07 {
    padding: 130px 0px 0px 0px;
}

.contato-container {
    display: flex;
    width: 80%;
    margin: 40px auto;
    padding: 40px;
    margin-bottom: 130px;
    background: var(--contato-color);
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    color: #fff;
}

.contato-texto {
    flex: 1;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contato-texto h2 {
    font-weight: 300;
    width: 80%;
    line-height: 1.4;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contato-texto p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 50px;
}

.marca {
    width: 100px;
    height: auto;
}

.linha {
    border: none;
    border-top: 1px solid #444;
    margin: 30px 0;
    width: 100%;
}

.contato-whatsapp {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.8;
    gap: 10px;
    margin-top: auto;
}

.contato-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: #25d366;
}

.contato-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02);
}

.contato-form input,
.contato-form textarea {
    padding: 12px 16px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    background: var(--input-color);
    color: #000;
    font-family: inherit;
}

.contato-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contato-form button {
    background: var(--input-color);
    color: #171a20;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 14px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contato-form button:hover {
    background: #e94b1c;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(233, 75, 28, 0.3);
}

.video-section {
    width: 90%;
    border-radius: 20px;
    padding: 0;
    margin: 0 auto;
    display: block;
    background: #000;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    margin: 0 auto;
    overflow: hidden;
    aspect-ratio: 16 / 6;
}

.video-element {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.section08 {
    padding: 10px 0px 80px 0px;
}

.caixa-mapa {
    flex: 1;
    margin: 50px auto;
    background-color: var(--bg-color1);
    position: relative;
    max-width: 80%;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.mapa-estatico {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.rotulo-localizacao {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 280px;
    background: var(--bg-color, white);
    padding: 8px 10px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    font-size: 14px;
}

.rotulo-localizacao iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

iframe {
    border-radius: 12px;
    display: block;
    width: 100%;
}

.iframe2 {
    border-radius: 12px;
    margin-top: 5px;
    width: 100%;
    display: block;
}

footer {
    background: var(--footer-color);
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    border-radius: 5px 5px 0 0;
    margin: auto;
}

footer .lado01,
footer .lado02,
footer .lado03 {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

footer .lado01 .logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10%;
}

footer .lado01,
footer .lado03 {
    margin-top: 10%;
}

footer .lado02 {
    margin-right: 5%;
}

footer .lado02 img {
    width: 150px;
    margin-bottom: 10px;
}

footer .lado03 img {
    width: 330px;
    margin-bottom: 10px;
}

footer .lado02 ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

footer .lado02 li a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer .lado02 li a:hover {
    color: #787aa1;
}

footer .lado02 span {
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
}

footer .lado02 p {
    font-size: 14px;
    color: #ccc;
    margin-top: 6px;
    max-width: 400px;
    line-height: 1.5;
}

footer .lado03 .links {
    display: flex;
    gap: 15px;
}

footer .lado03 .links a {
    color: #bbb;
    font-size: 12px;
    text-decoration: none;
    border: 1px solid #555;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

footer .lado03 .links a:hover {
    background: #fff;
    color: #131515;
    border-color: #fff;
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */

@media (max-width: 768px) {
    .selo-fixo-container {
        top: -5px;
        right: -10px;
    }

    .selo-fixo {
        padding: 6px 10px 6px 6px;
        border-radius: 6px 15px 15px 6px;
    }

    .selo-fixo-imagem {
        width: 90px;
        height: 60px;
        margin-right: 6px;
    }

    .selo-fixo-texto {
        font-size: 12px;
    }

    body {
        padding-left: 0;
    }

    .sidebar {
        width: 0;
        overflow: hidden;
        transition: width 0.3s ease;
    }

    .sidebar.active {
        width: 240px;
    }

    .sidebar.active .sidebar-logo .logoNavTwo,
    .sidebar.active .sidebar-link .nav-link,
    .sidebar.active .sidebar-footer,
    .sidebar.active .tema span {
        opacity: 1;
        width: auto;
    }

    .hamburger {
        display: flex;
    }

    .menuHamburguer {
        width: 100%;
        height: 60px;
        background-color: var(--card-background);
        position: fixed;
        z-index: 99;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .espaco {
        height: 60px;
    }

    .overlay.active {
        display: block;
    }

    .modal-missao-conteudo {
        padding: 20px;
        max-height: 90vh;
    }

    .modal-missao-header h2 {
        font-size: 1.5rem;
    }

    .modal-missao-secao {
        padding: 12px;
    }

    .modal-termos-conteudo-simples {
        padding: 20px;
        max-height: 90vh;
    }

    .modal-termos-header-simples h2 {
        font-size: 1.5rem;
    }

    .termos-item-simples h3 {
        font-size: 1rem;
    }

    .modal-politica-conteudo {
        padding: 20px;
        max-height: 90vh;
    }

    .modal-politica-header h2 {
        font-size: 1.5rem;
    }

    .modal-politica-secao {
        padding: 12px;
    }

    .modal-politica-secao h3 {
        font-size: 1.1rem;
    }

    .section01 h1 {
        font-size: 1rem;
    }

    .section01 .rod01 {
        width: 90px;
        height: auto;
    }

    .section01 .rod02 {
        width: 60px;
        height: auto;
    }

    .subtitle {
        font-size: 0.8rem;
    }

    .section02 h1 {
        font-size: 1rem;
    }

    .section02 a {
        font-size: 0.5rem;
    }

    .section03 h1 {
        font-size: 1.2rem;
    }

    .section03 h2 {
        font-size: 0.5rem;
    }

    .selos-container {
        max-width: 400px;
    }

    .selo img {
        width: 100px;
        height: auto;
    }

    .selo p {
        font-size: 0.7rem;
    }

    .section04 h1 {
        font-size: 1.5rem;
    }

    .section04 h2 {
        font-size: 0.8rem;
    }

    .servico {
        width: 150px;
    }

    .servico img {
        width: 150px;
        height: auto;
    }

    .servico h3 {
        font-size: 0.8rem;
    }

    .servico p {
        font-size: 0.7rem;
    }

    .sectionGaleira {
        width: 100%;
    }

    .hero .slide {
        min-width: 100%;
    }

    .hero .arrow {
        width: 28px;
        height: 28px;
    }

    .dot {
        width: 5px;
        height: 5px;
    }

    .text {
        font-size: 15px;
    }

    .modal-galeria-conteudo {
        width: 85%;
        max-height: 95vh;
        padding: 15px;
    }

    .modal-galeria-titulo {
        font-size: 1.4rem;
    }

    .modal-galeria-fechar {
        top: 10px;
        right: 15px;
        font-size: 28px;
    }

    .modal-galeria-botao {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .modal-galeria-miniatura {
        width: 60px;
        height: 45px;
    }

    .section05 h1 {
        font-size: 1.4rem;
        margin-top: 15%;
    }

    .section05 h3 {
        font-size: 0.6rem;
        margin-bottom: 10%;
    }

    .sacaria-container {
        flex-direction: column;
        margin-bottom: 10%;
        margin: 20px;
    }

    .sacaria-imagem,
    .sacaria-conteudo {
        width: 100%;
    }

    .sacaria-conteudo {
        padding: 20px;
    }

    .sacaria-footer {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 10px;
    }

    .sacaria-botao {
        align-self: flex-end;
    }

    .modal-conteudo {
        max-width: 650px;
    }

    .modal-titulo {
        font-size: 15px;
    }

    .modal-texto {
        font-size: 10px;
    }

    .modal-fechar {
        font-size: 16px;
    }

    .carousel-wrapper {
        flex-direction: column;
    }

    .carousel-btn {
        display: none;
    }

    .biografia-cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .card-rodrigo {
        width: 90%;
    }

    .contato-container {
        flex-direction: column;
        width: 90%;
        padding: 20px;
    }

    .contato-texto {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .contato-texto h2 {
        font-size: 1.5rem;
        width: 100%;
    }

    .contato-texto p {
        margin-bottom: 20px;
    }

    .contato-form {
        width: 100%;
        padding: 20px;
    }

    .sidebar {
        height: 100%;
    }

    .video-container {
        aspect-ratio: 16 / 7;
    }

    .caixa-mapa {
        max-width: 100%;
    }

    .mapa-estatico {
        width: 100%;
    }

    .rotulo-localizacao {
        width: 200px;
        font-size: 10px;
    }

    .rotulo-localizacao iframe {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .selo-fixo-container {
        top: 15px;
        right: 35px;
    }

    .selo-fixo {
        width: 35px;
        height: 35px;
        padding: 6px;
    }

    .selo-fixo-imagem {
        width: 60px;
        height: 45px;
    }

    .galeria {
        margin: 20px;
    }

    .modal-missao-conteudo {
        padding: 15px;
    }

    .modal-missao-header h2 {
        font-size: 1.3rem;
    }

    .modal-termos-conteudo-simples {
        padding: 15px;
    }

    .modal-termos-header-simples h2 {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 5px;
    }

    .modal-politica-conteudo {
        padding: 15px;
    }

    .modal-politica-header h2 {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 5px;
    }

    .modal-politica-secao h3 {
        font-size: 1rem;
    }

    .video-container {
        aspect-ratio: 16 / 7.5;
    }
}

@media (max-width: 1400px) {
    .nav-icon img {
        width: 25px;
        height: 25px;
    }

    .sidebar-logo .logoNavOne {
        width: 65px;
        height: auto;
        flex-shrink: 0;
        margin-left: 8px;
        margin-top: 8px;
    }

    .sidebar-logo .logoNavTwo {
        width: 80px;
    }

    .tema {
        margin-top: -5%;
    }
}

@media (max-width: 1024px) {
    .carousel-view {
        width: 90%;
    }

    .card-rodrigo {
        width: 280px;
    }

    .video-container {
        aspect-ratio: 16 / 6.5;
    }
}