body, html {
    margin: 0;
    padding: 0;
    font-family: 'Urbanist', sans-serif;
    scroll-behavior: smooth;
    height: 100%;
    font-family: 'Urbanist', sans-serif;
}
    * {
        box-sizing: border-box;
    }
.dm-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(
        to bottom,
        rgba(20, 20, 20, 0.744) 0%,
        rgba(7, 4, 4, 0.377) 45%,
        rgba(0, 0, 0, 0.174) 75%,
        rgba(255, 255, 255, 0) 100%
    );
    box-shadow: none;
    border-bottom: none;
}

    .dm-header__inner {
        width: 100%;
        margin: 0;
        min-height: 64px;
        padding: 0 12px 0 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .dm-header__left {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-width: 240px;
        flex: 1;
    }

    .dm-header__brand {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        margin-left: 0;
        padding-left: 0;
    }

    .dm-header__brand img {
        height: 30px;
        width: auto;
        display: block;
    }

    .dm-header__center {
        display: flex;
        justify-content: center;
        flex: 2;
    }

    .dm-header__nav {
        display: flex;
        align-items: center;
        gap: 38px;
    }

    .dm-header__nav a,
    .dm-header__dropbtn {
        color: #ffffff;
        text-decoration: none;
        font-family: 'Urbanist', sans-serif;
        font-size: 16px;
        font-weight: 400;
        opacity: 0.96;
        transition: color 0.25s ease, opacity 0.25s ease;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        white-space: nowrap;
    }

    .dm-header__nav a:hover,
    .dm-header__dropbtn:hover {
        color: #ff4a4a;
        opacity: 1;
    }

    .dm-header__dropdown {
        position: relative;
    }

    .dm-header__dropdown-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 50%;
        transform: translateX(-50%);
        min-width: 190px;
        background: rgba(255,255,255,0.98);
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        padding: 8px 0;
        display: none;
    }

    .dm-header__dropdown:hover .dm-header__dropdown-menu {
        display: block;
    }

    .dm-header__dropdown-menu a {
        display: block;
        color: #222;
        padding: 10px 16px;
        font-size: 14px;
        white-space: nowrap;
    }

    .dm-header__dropdown-menu a:hover {
        color: #d90000;
        background: rgba(0,0,0,0.03);
    }

    .dm-header__right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 14px;
        min-width: 240px;
        flex: 1;
    }

    .dm-header__social {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        width: 22px;
        height: 22px;
        opacity: 0.96;
        transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
    }

    .dm-header__social:hover {
        color: #ff4a4a;
        transform: translateY(-1px);
        opacity: 1;
    }

    .dm-header__lang {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        margin-left: 6px;
    }

    .dm-header__lang a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        opacity: 0.96;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .dm-header__lang a:hover {
        transform: scale(1.08);
        opacity: 1;
    }

    .dm-header__lang img {
        width: 15px;
        height: 15px;
        object-fit: cover;
        border-radius: 50%;
        display: block;
    }

    .dm-header__toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 22px;
        position: relative;
    }

    .dm-header__toggle span,
    .dm-header__toggle::before,
    .dm-header__toggle::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #fff;
        border-radius: 999px;
        transition: 0.25s ease;
    }

    .dm-header__toggle span {
        top: 10px;
    }

    .dm-header__toggle::before {
        top: 2px;
    }

    .dm-header__toggle::after {
        bottom: 2px;
    }

    .dm-header-spacer {
        height: 64px;
    }

    @media (max-width: 1100px) {
        .dm-header__inner {
            min-height: 64px;
            padding: 0 12px;
        }

        .dm-header-spacer {
            height: 64px;
        }

        .dm-header__toggle {
            display: block;
        }

        .dm-header__center {
            position: absolute;
            top: 64px;
            left: 0;
            width: 100%;
            background: rgba(22,22,22,0.98);
            display: none;
            padding: 20px;
        }

        .dm-header__center.is-open {
            display: flex;
        }

        .dm-header__nav {
            width: 100%;
            flex-direction: column;
            gap: 18px;
            align-items: center;
        }

        .dm-header__dropdown-menu {
            position: static;
            transform: none;
            margin-top: 10px;
        }

        .dm-header__left,
        .dm-header__right {
            min-width: auto;
            flex: 0;
        }
    }

    @media (max-width: 768px) {
        .dm-header__brand img {
            height: 24px;
        }

        .dm-header__inner {
            min-height: 58px;
        }

        .dm-header-spacer {
            height: 58px;
        }

        .dm-header__center {
            top: 58px;
        }

        .dm-header__right {
            gap: 8px;
        }

        .dm-header__social {
            font-size: 12px;
            width: 18px;
            height: 18px;
        }

        .dm-header__lang img {
            width: 13px;
            height: 13px;
        }
    }

.dm-header__toggle.active span {
    opacity: 0;
}

.dm-header__toggle.active::before {
    transform: rotate(45deg);
    top: 10px;
}

.dm-header__toggle.active::after {
    transform: rotate(-45deg);
    bottom: 10px;
}






/* Seções */

h1 {
    margin-top: 20px;
}

/* Estilo dos botões */
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2vh;
}

.tab-btn {
    background: none;
    border: 2px solid red;
    color: red;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s, background-color 0.3s;
}

.tab-btn.active {
    background-color: red;
    color: white;
}

.tab-btn:hover {
    background-color: red;
    color: white;
}

.tab-contents {
    margin-top: 30px;
}

.content {
    display: none;
}

.content.active {
    display: block;
}

/* Estilo dos formulários */
form {
    text-align: left;
    margin-top: 20px;
    width: 600px; /* Largura do formulário */
    margin-left: auto;
    margin-right: auto;
}

label {
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: darkred;
}



/* Estilo geral */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

h1 {
    margin-top: 20px;
}

/* Estilo dos botões */
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 4vh;
    margin-bottom: 4vh;
}

.tab-btn {
    background: none;
    border: 2px solid red;
    color: red;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s, background-color 0.3s;
}

.tab-btn.active {
    background-color: red;
    color: white;
}

.tab-btn:hover {
    background-color: red;
    color: white;
}

.tab-contents {
    margin-top: 30px;
}

.content {
    display: none;
}

.content.active {
    display: block;
}

/* Estilo dos formulários */
form {
    text-align: left;
    margin-top: 20px;
    width: 600px; /* Largura do formulário */
    margin-left: auto;
    margin-right: auto;
}

label {
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: red;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: darkred;
}

/* Estilo da lista de informações */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
}

.info-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px; /* Espaçamento entre os itens */
    flex-wrap: wrap;
    margin: 8%;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza os itens dentro do item */
    padding: 15px;
    width: 30%; /* Largura de cada item */
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 30px;
    color: #ff1100; /* Cor dos ícones */
    margin-right: 15px;
}

.info-item span {
    font-size: 15px;
    color: #333;
}

/* Responsividade para telas menores */
@media (max-width: 1024px) {
    .info-item {
        width: 45%; /* Ocupa metade da tela em telas menores, como tablets */
    }
}

@media (max-width: 768px) {
    .info-item {
        width: 100%; /* Cada item ocupa toda a largura na versão mobile */
        margin-bottom: 20px;
    }

    .tab-buttons {
        flex-direction: column; /* Os botões ficam empilhados em telas menores */
        gap: 10px;
    }

    form {
        width: 90%; /* O formulário ocupa 90% da largura da tela */
    }
}

@media (max-width: 480px) {
    /* Para dispositivos muito pequenos (como smartphones verticais) */
    .info-item {
        width: 100%; /* Cada item ocupa toda a largura da tela */
        margin-bottom: 15px;
    }

    h1 {
        font-size: 18px; /* Tamanho da fonte do título reduzido */
    }

    .tab-btn {
        font-size: 14px; /* Reduz o tamanho da fonte dos botões */
    }

    .tab-buttons {
        flex-direction: column; /* Botões empilhados verticalmente em telas pequenas */
    }

    .tab-btn {
        padding: 8px 15px; /* Menos padding nos botões para economizar espaço */
    }

    form {
        width: 95%; /* O formulário ocupa 95% da largura da tela */
    }

    .info-list {
        gap: 15px; /* Ajusta o espaçamento entre os itens */
        margin: 5%; /* Reduz a margem lateral */
    }
}




:root{
  --bg: #f7f8fa;          /* cinza bem claro */
  --panel: #ffffff;       /* branco cartões */
  --text: #202124;        /* preto suave */
  --muted: #6b7280;       /* cinza médio */
  --line: #e5e7eb;        /* divisória */
  --accent: #e10600;      /* vermelho DM */
}

.footer.light{
  background: var(--bg);
  color: var(--text);
  padding: 56px 5% 28px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;

  /* Linha superior centralizada */
  border-top: none; /* remove a antiga linha total */
  position: relative;
}

.footer.light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 2600px);     /* controla comprimento da linha */
  height: 1px;                /* espessura */
  background: var(--accent);  /* vermelho DM */
  border-radius: 1px;
}


.footer-container{
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 28px 36px;
}

.footer-column{
  background: var(--panel);
background-color: #00000000;
}

.footer-column h3{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(225,6,0,.15);          /* sublinhado vermelho suave */
}

.footer-column ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li{
  margin: 8px 0;
  font-size: 15px;
  color: var(--muted);
}

.footer-column a{
  color: var(--text);
  text-decoration: none;
  position: relative;
}

.footer-column a::after{
  content:"";
  position:absolute;
  left:0; bottom:-2px;
  width:0; height:2px;
  background: var(--accent);
  transition: width .25s ease;
}
.footer-column a:hover::after{ width:100%; }
.footer-column a:hover{ color: var(--accent); }

.footer-column p{
  font-size: 14px;
  color: var(--muted);
  margin: 6px 0;
}

.footer-logo{
  display:flex;
  justify-content:center;
  margin: 17px 0 14px;
}
.footer-logo img{
  width: 120px;      /* ajusta se quiser maior/menor */
  height:auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.08));
  transition: transform .25s ease;
}
.footer-logo img:hover{ transform: scale(1.03); }

.footer-bottom {
  display: flex;                     /* coloca lado a lado */
  justify-content: center;           /* centraliza o conjunto no meio */
  align-items: center;
  gap: 8px;                          /* espaçamento entre logo e texto */
  color: var(--muted);
  font-size: 14px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  width: min(60%, 900px);            /* mantém linha curta e centralizada */
  margin: 40px auto 0;
  border-radius: 2px;
}

.footer-bottom img {
  width: 100px;                       /* ajusta o tamanho da logo */
  height: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.1));
  margin-right: 6px;
}

.footer-bottom p{
  margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 1200px){
  .footer-container{ grid-template-columns: repeat(3, minmax(160px, 1fr)); }
}
@media (max-width: 768px){
  .footer-container{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer-container{ grid-template-columns: 1fr; }
  .footer{ padding-left: 4%; padding-right: 4%; }
}

.footer-column ul.duas-colunas {
  columns: 2;            /* define duas colunas */
  column-gap: 12px;      /* diminui o espaçamento entre elas */
  text-align: left;
}

.footer-column ul.duas-colunas li {
  break-inside: avoid;   /* evita quebra feia entre colunas */
  margin: 0px 0 10px 0px;
}

.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-list li {
  margin: 6px 0;
}

.social-list a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;                   /* espaço entre ícone e texto */
  transition: color 0.25s ease;
}

.social-list a i {
  color: var(--accent);       /* vermelho DM */
  font-size: 16px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.social-list a:hover {
  color: var(--accent);
}

.social-list a:hover i {
  transform: scale(1.15);
}


.footer-column a::after { display: none; }



/* Ajuste para telas menores que 768px (mobile) */
@media (max-width: 768px) {
    #langToggle {
      margin-right: 68px; /* ou use negativo: margin-left: -10px */
padding-bottom: 2px;
    }
  }