@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --cor-principal: #0D3973;
  --cor-botoes: #049DBF;
  --footer: #0D0D0D;
  --cor-destaque: #038C7F;
  --card-sombras: 1px 1px 13px #00000023;
  --font-family: 'Montserrat', sans-serif;
  --cor-de-destaque: #225473;
  --cor-secundaria: #1C4859;
  --cor-tercearia: #A6A6A6;
  --cor-footer: #0D0D0D;
}

/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

body {
  background-color: white;
  min-height: 100vh;
  position: relative;
  transition: height 0.3s width 0.3s;
  transition-timing-function: ease;
}

html {
  scroll-behavior: smooth;
}

#barra {
  height: 10px;
  width: 70px;
  margin: 0 auto;
  background-color: orange;
  margin-bottom: 30px;
}

.cardinal {
  display: none !important;
}

p {
  line-height: 1.8em;
}

h2, h1 {
  text-transform: capitalize;
}

h2 {
  font-size: 1.8em;
}

/* Hero */
#background {
  min-height: 90vh;
  /* MOD: garante que a imagem de fundo do hero cubra o bloco inteiro e fique centrada */
  background: black;
  background-position: center top !important;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  transition: background-image 0.5s ease-in-out;
}

header {
  width: 100% !important;
  background-color: rgba(0, 0, 0, 0.4);
  box-shadow: 1px 1px 14px rgba(0, 0, 0, 0.329);
  display: flex;
  justify-content: space-between;
  /* MOD: adiciona respiro horizontal consistente no cabeçalho */
  padding: 10px 10px 0 10px;
}

#logo-pq {
  display: none !important;
}

menu {
  align-self: center;
}

/* MOD: controla espaçamento entre itens do menu sem depender de margens individuais */
header ul {
  display: flex;
  gap: 18px;
}

header ul li {
  display: inline-block;
}
header ul li a {
  font-size: 18px;
  font-weight: bold;
}
header ul li a:hover {
  text-decoration: underline;
}

header a {
  color: white;
  font-size: 14px;
  text-decoration: none;
  /* MOD: remove margem horizontal fixa para o gap do flex controlar o espaçamento */
  margin: 0;
}

.hamburguer-container {
  display: none;
  color: #fff;
  font-size: 1.5em;
}

#cta {
  display: none;
}

section#hero {
  height: 60vh !important;
  color: white;
  display: flex;
  /* MOD: limita a largura do bloco para melhorar legibilidade em telas grandes */
  width: min(1100px, 92vw);
  gap: 10px;
  margin: auto;
  justify-content: center;
  align-items: start;
  flex-flow: column nowrap;
}

#hero h1 {
  /* MOD: aumenta levemente o destaque do título principal */
  font-size: 2.4em;
}

#hero h3 {
  /* MOD: usa medida baseada em caracteres para legibilidade do texto */
  width: min(52ch, 90vw);
  line-height: 1.5em;
}

#hero a {
  color: black;
  text-decoration: none;
  background-color: var(--cor-botoes);
  font-weight: bold;
  width: 150px;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
}

#hero a:active {
  transform: scale(0.98);
}

a.float-btn {
  display: block;
  position: fixed;
  bottom: 40px;
  right: 20px;
  padding: 22px;
  background-color: #2bb714;
  color: white;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-size: 1.5em;
  z-index: 1000;
  font-size: 24px;
  text-decoration: none;
  transition: opacity 0.5s ease-out;
}

a.float-btn:active {
  transform: scale(0.98);
}

/* Nossos diferenciais */
section#diferenciais {
  padding-bottom: 170px;
  padding-top: 170px;
  background-color: #fff;
}

section#diferenciais h2 {
  text-align: center;
  margin: 0 0 20px 0;
  font-weight: 700;
}

section#diferenciais > article {
  /* MOD: ajusta largura e alinhamento para evitar linhas muito longas */
  width: min(1050px, 92vw);
  margin: auto;
  display: flex;
  justify-content: flex-start;
  gap: 24px;
}

section#diferenciais article > aside {
  margin: 10px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
}

section#diferenciais article > aside > i {
  font-size: 2em;
  font-weight: bolder;
}

aside.difereciais-card {
  background-color: #0a346b;
  color: #fff;
  border-radius: 10px;
  flex: 0 1 314px;
  height: 200px;
  text-align: center;
  padding: 10px;
  padding-top: 20px;
  cursor: pointer;
  transition: transform 0.3s;
  transition-timing-function: ease-in;
}

aside.difereciais-card:hover {
  transform: scale(1.05);
}

aside.difereciais-card > span {
  font-weight: bold;
  font-size: 18px;
}

/* Depoimento de clientes */
#depoimento-de-clientes {
  background-color: white;
  padding: 200px 0 150px 0 !important;
  /* MOD: adiciona padding lateral para evitar encostar nas bordas */
}

#depoimento-de-clientes > h2 {
  text-align: center;
  padding-bottom: 20px;
  font-weight: 700;
}

#depoimento-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.depoimento {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-flow: column nowrap;
  justify-content: space-between;
  padding: 20px 20px 40px 20px;
  margin: 10px;
  /* MOD: permite altura automática para textos maiores */
  height: 280px;
  border-radius: 10px;
  box-shadow: var(--card-sombras);
  cursor: pointer;
  border-left: 4px solid var(--cor-botoes);
  flex: 0 1 360px;
  transition: border-width 0.3s;
  transition-timing-function: ease;
}

.depoimento:hover {
  border-left-width: 10px;
}

.depoimento p.depoimento-content {
  font-size: 18px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.534);
}

.depoimento div {
  text-transform: capitalize;
}

.depoimento h4 {
  font-weight: bolder;
  font-size: 1.4em;
}

/* SOBRE */
section#sobre {
  /* MOD: centraliza e dá respiro lateral ao texto institucional */
  padding: 50px 30px;
  margin-bottom: 250px;
}

#sobre p {
  line-height: 1.5em;
  text-indent: 30px;
  text-align: justify;
  font-size: 18px;
  font-family: "Times New Roman", Times, serif;
}

section#sobre h2 {
  text-align: center;
  margin-bottom: 20px;
}

#sobre-container {
  display: flex;
  flex-flow: row nowrap;
  gap: 20px;
  margin-top: 50px !important;
  max-width: 1200px;
  margin: 0 auto;
}
#sobre-container aside img {
  width: 515px;
  border-radius: 15px;
}
#sobre-container aside img.image-pq {
  display: none;
}
#sobre-container aside img.image-md {
  display: none;
}

/* Perguntas frequentes */
section#perguntas {
  background-color: white;
  display: flex;
  justify-content: space-between;
  flex-flow: row nowrap;
  padding-bottom: 170px;
  /* MOD: adiciona espaçamento entre imagem e conteúdo */
  gap: 30px;
  padding-left: 4vw;
  padding-right: 4vw;
}

section#perguntas p:nth-child(odd) {
  text-indent: 30px;
  text-decoration: underline;
}

section#perguntas p:nth-child(even) {
  font-weight: 300;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
}

section#perguntas > article {
  flex: 0 1 50%;
}

#img-perguntas {
  display: flex;
  align-items: center;
}

section#perguntas article h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

div#img-perguntas img {
  width: 700px;
}

.pergunta-container:first-child {
  border-bottom: 2px solid rgba(0, 0, 0, 0.4431372549);
  border-top: 2px solid rgba(0, 0, 0, 0.4431372549);
  padding: 10px 0;
  margin-bottom: 5px;
}

.pergunta-container {
  border-bottom: 2px solid rgba(0, 0, 0, 0.4431372549);
  padding: 10px 0;
  margin-bottom: 5px;
}

section#perguntas > article {
  padding-top: 100px;
}

div.pergunta {
  display: flex;
  justify-content: space-between;
}

.resposta {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.show {
  opacity: 1;
}

.hidden {
  display: none;
}

#esconder {
  display: none;
}

#esconder:hover, #mostrar:hover {
  cursor: pointer;
}

/* Suporte */
section#suporte {
  height: 130px;
  padding: 0 15px;
  margin: 250px 0 290px 0;
  background-color: var(--cor-principal);
  display: flex;
  align-items: center;
  justify-content: space-around;
  /* MOD: cria um pouco de separação lateral em telas maiores */
  padding-left: 6vw;
  padding-right: 6vw;
}

section#suporte p {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

#suporte h2 {
  margin-bottom: 20px;
}

section#suporte a {
  background-color: #fff;
  color: black;
  font-weight: bold;
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
  transition: transform 0.3s;
  transition-timing-function: ease-out;
}

section#suporte a:hover {
  transform: scale(1.1);
}

/* Prova Social */
#prova-social-container {
  /* MOD: garante que o conteúdo fique centralizado verticalmente */
  display: flex;
  align-items: center;
  height: auto;
  padding: 15px 0;
  background-color: #F3F5FA;
}
#prova-social-container h2 {
  color: black;
}

#logos-container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  /* MOD: permite quebra em telas menores sem perder alinhamento */
  flex-wrap: wrap;
  gap: 30px;
}

.logo-empresa {
  width: 200px;
  transition: transform 0.3s;
}

.logo-empresa:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.fundo-preto-2 {
  width: 100%;
  /* MOD: adiciona padding para o conteúdo não encostar nas bordas */
  padding: 0;
  margin: auto;
}

.fundo-preto-2 h2 {
  padding: 0;
  text-align: center;
  font-size: 2.2em;
  color: white;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Localização */
section#localizacao {
  background-color: white;
  margin-bottom: 200px;
  margin-top: 200px;
  /* MOD: padding lateral para manter alinhamento com outras seções */
  padding: 100px 4vw;
}

section#localizacao > h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 3em;
}

section#localizacao iframe {
  display: block;
  margin: auto;
  /* MOD: deixa o mapa responsivo sem perder proporção */
  width: min(900px, 100%);
  aspect-ratio: 16/9;
  height: auto;
}

/* Footer do site */
div.informacoes {
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  background-color: var(--cor-de-destaque);
  color: white;
  padding: 10px;
}

a.logo-foot {
  display: block;
}

a.logo-foot > img {
  width: 200px;
}

.zona-restrita {
  background-color: var(--cor-botoes);
  color: #fff;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
  opacity: 0.9;
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  transition: opacity 0.3s;
  transition-timing-function: ease-in-out;
  /* border: 4px solid #fff; */
}

.zona-restrita:hover {
  opacity: 1;
}

.zona-restrita:active {
  background-color: orangered;
}

.infor {
  margin: 15px 0px;
}

.infor > h3 {
  font-weight: 900;
}

.infor > p {
  margin: 1em 0px;
  line-height: 1.4em;
}

.infor > p.barra {
  height: 4px;
  width: 40%;
  margin: 1.4em 0px;
  background-color: var(--cor-tercearia);
}

.infor {
  flex: 1;
}

.infor > ul {
  list-style-position: inside;
  list-style: none;
}

.infor > ul > li {
  line-height: 1.5em;
}

.infor > ul > li {
  line-height: 1.9em;
}

.link-mapa {
  color: #fff;
  text-decoration: none;
}

.link-mapa:hover {
  text-decoration: underline;
}

div.foot {
  background-color: var(--cor-tercearia);
}

div.foot > p {
  color: black;
  font-size: 0.95em;
  text-align: center;
  padding: 13px 0px;
}

div.informacoes {
  background-color: var(--cor-footer);
  color: white;
  padding: 10px;
}

.logo-foot > img {
  width: 170px;
}

.infor {
  margin: 15px 0px;
}

.infor > h3 {
  font-weight: 900;
}

.infor > p {
  margin: 1em 0px;
  line-height: 1.4em;
}

.infor > p.barra {
  height: 4px;
  width: 40%;
  margin: 1.4em 0px;
  background-color: var(--cor-tercearia);
}

.infor > ul > li {
  line-height: 1.9em;
}

div.foot {
  background-color: var(--cor-tercearia);
}

div.foot > p {
  color: black;
  font-size: 0.95em;
  text-align: center;
  padding: 13px 0px;
}

#redes-container a {
  color: white;
  text-decoration: none;
  margin-right: 5px;
}

#redes-container i {
  font-size: 24px;
  transition: color 0.3s;
}

#redes-container i:hover {
  color: #049DBF;
}

p.dev a {
  color: white;
  text-decoration: none;
}

p.dev a:hover {
  text-decoration: underline;
}

/** ================ CONTACTOS ====================*/
section#contactos {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 200px;
}
section#contactos div#contactos-container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  width: 1100px;
  padding: 20px 15px;
  box-shadow: var(--card-sombras);
  border-radius: 10px;
}
section#contactos div#contactos-container #disclaimer-suporte {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
section#contactos div#contactos-container #disclaimer-suporte img {
  width: 420px;
}
section#contactos div#contactos-container #form-suporte {
  flex-grow: 1;
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
}
section#contactos div#contactos-container #form-suporte h1 {
  font-size: 28px;
  text-transform: capitalize;
  font-weight: 300;
  padding-bottom: 10px;
}
section#contactos div#contactos-container #form-suporte h1 span {
  font-weight: bold;
}
section#contactos div#contactos-container #form-suporte .form-group {
  display: flex;
  flex-flow: column nowrap;
}
section#contactos div#contactos-container #form-suporte .form-group label {
  font-weight: lighter;
  text-transform: capitalize;
  padding-bottom: 2px;
}
section#contactos div#contactos-container #form-suporte .form-group input, section#contactos div#contactos-container #form-suporte .form-group select {
  padding: 10px;
}
section#contactos div#contactos-container #form-suporte .form-group textarea {
  padding: 5px;
}
section#contactos div#contactos-container #form-suporte input[type=submit] {
  background-color: var(--cor-principal);
  font-weight: bold;
  color: #fff;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.3s;
  transition-timing-function: ease;
}
section#contactos div#contactos-container #form-suporte input[type=submit]:hover {
  opacity: 1;
}

/**= Errors FORM==*/
.form-group ul {
  list-style-type: none;
  list-style-position: inside;
  padding: 0;
}
.form-group ul .error-message {
  padding: 0;
  margin: 0;
  color: red;
}

@media screen and (max-width: 600px) {
  /* Generals */
  h2 {
    font-size: 1.5em;
  }
  /* header */
  header {
    position: fixed;
    /* MOD: mantém consistência do padding do header em mobile */
    background-color: var(--cor-principal);
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: 25px auto;
    padding: 5px 5px 0px 5px;
    z-index: 100;
  }
  header .hamburguer-container {
    padding-top: 30px;
  }
  header .hamburguer-container img {
    width: 27px;
  }
  img#logo-lg {
    display: none;
  }
  #logo-pq {
    display: block !important;
  }
  .cardinal {
    display: inline !important;
  }
  div#fundo-preto {
    padding: 0;
    background-position: right top;
  }
  menu {
    grid-column-start: 1;
    grid-column-end: -1;
  }
  menu ul {
    font-weight: bold;
    flex-flow: column nowrap;
    flex: 1;
    gap: 50px;
    padding: 50px 0 22px 20px;
  }
  header img {
    width: 180px;
  }
  header #cta {
    padding: 10px;
    border-radius: 10px;
    color: white;
    text-align: center;
    border: 1px solid var(--cor-botoes);
  }
  menu#menu-container {
    padding-top: 24px;
    padding-bottom: 18px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }
  menu#menu-container.menu-open {
    opacity: 1;
    pointer-events: auto;
  }
  #logo, header .hamburguer-container {
    flex: 0 1 40%;
  }
  #logo img {
    width: 130px;
  }
  .hamburguer-container {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  #background {
    background-position: center;
    height: 90vh !important;
  }
  /* #planos-de-internet, */
  #diferenciais,
  #suporte {
    scroll-margin-top: 104px;
  }
  section#hero {
    height: 80vh !important;
    gap: 12px;
    margin: 0;
    padding-left: 20px;
    align-items: flex-start;
    max-width: 90%;
  }
  section#hero a {
    opacity: 1;
  }
  /* Diferenciais */
  #diferenciais article {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    flex-flow: column nowrap;
    text-align: center;
    gap: 30px;
  }
  #diferenciais aside.difereciais-card {
    flex: 0 1 235px !important;
    width: 97%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  aside.difereciais-card:hover {
    transform: scale(1);
  }
  section#depoimento-de-clientes {
    padding: 5px;
    gap: 0;
  }
  section#depoimento-de-clientes h2 {
    margin-bottom: 20px;
    padding: 0;
  }
  #depoimento-de-clientes {
    gap: 30px;
  }
  #depoimento-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: start;
    align-items: center;
  }
  div.depoimento {
    width: 90% !important;
    flex-basis: auto;
    padding: 20px;
  }
  .depoimento:hover {
    border-left-width: 3px !important;
  }
  /* Perguntas frequentes */
  section#perguntas {
    display: block;
    padding: 5px;
    margin-bottom: 100px;
  }
  section#perguntas article h2 {
    text-align: center;
  }
  #perguntas img {
    display: none;
  }
  section#perguntas > article {
    flex: 0 1 100%;
  }
  div.pergunta {
    display: flex;
    flex-flow: row nowrap;
  }
  /* Prova Social */
  #prova-social-container {
    padding: 0;
  }
  div.fundo-preto-2 {
    padding-bottom: 50px;
  }
  div.fundo-preto-2 h2 {
    padding-bottom: 20px;
  }
  /* Sobre */
  section#sobre {
    padding: 0 5px;
  }
  section#sobre p, section#sobre h2 {
    text-align: left;
  }
  section#sobre p {
    text-indent: 0;
  }
  /* Localização */
  #localizacao {
    text-align: center;
  }
  section#localizacao > h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 2em;
  }
  #localizacao > iframe {
    display: inline-block;
    max-width: 95%;
    aspect-ratio: 4/5;
  }
  /* Suporte */
  section#suporte {
    flex-flow: column nowrap;
    height: 250px;
  }
  section#suporte p {
    text-align: center;
  }
  section#suporte a:hover {
    transform: scale(0.98);
  }
  /* Sobre */
  #sobre {
    background-color: transparent !important;
    padding: 0 10px;
    margin-top: 100px !important;
  }
  #sobre h2 {
    display: none !important;
  }
  #sobre-container {
    flex-flow: column nowrap;
  }
  #sobre-container aside img.image-lg {
    display: none;
  }
  #sobre-container aside img.image-md {
    display: none;
  }
  #sobre-container aside img.image-pq {
    width: 100%;
    display: block;
  }
  #sobre-container aside p {
    text-indent: 1.8em !important;
    text-align: justify;
  }
  /* Clientes */
  #prova-social-container {
    height: auto;
    margin-top: 80px;
  }
  .fundo-preto-2 {
    padding-bottom: 200px;
  }
  #logos-container {
    flex-flow: column nowrap;
    gap: 40px;
  }
  .logo-empresa:hover {
    cursor: none;
  }
  div.informacoes {
    display: block !important;
  }
  .infor > h3.firm-name {
    display: none;
  }
  /** ========== CONTACTOS =========== */
  #contactos {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
    align-items: flex-start !important;
  }
  #contactos-container {
    box-shadow: none !important;
  }
  #contactos-container input[type=submit] {
    opacity: 1 !important;
  }
  #contactos-container input[type=submit]:active {
    transform: scale(0.98);
  }
  #disclaimer-suporte {
    display: none !important;
  }
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
  header {
    flex-flow: column nowrap;
    padding-bottom: 15px;
    padding-top: 15px;
  }
  header menu {
    padding-top: 20px;
    align-self: flex-start;
  }
  header menu ul li a {
    font-size: 18px !important;
  }
  /** DEPOIMENTOS */
  div#depoimento-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  section#depoimento-de-clientes {
    display: block;
  }
  section#depoimento-de-clientes h2 {
    padding-bottom: 20px !important;
  }
  .depoimento {
    flex-basis: 320px;
  }
  .depoimento:hover {
    border-left-width: 3px !important;
  }
  /** DIFERENCIAIS DA EMPRESA */
  section#diferenciais {
    margin-bottom: 98px !important;
  }
  aside.difereciais-card:hover {
    transform: scale(1);
  }
  section#diferenciais article {
    flex-wrap: wrap;
    justify-content: center;
  }
  /** SOBRE A EMPRESA */
  section#sobre {
    background-color: transparent;
  }
  section#sobre #sobre-container {
    padding: 10px;
    margin-top: 10px !important;
  }
  section#sobre #sobre-container aside img.image-pq {
    display: none;
  }
  section#sobre #sobre-container aside img.image-lg {
    display: none;
  }
  section#sobre #sobre-container aside img.image-md {
    width: 380px;
    display: block;
  }
  section#sobre p {
    font-size: 16px;
    overflow: hidden;
  }
  /** PERGUNTAS FAQ*/
  section#perguntas {
    flex-flow: column nowrap;
  }
  div#img-perguntas img {
    display: none;
  }
  /** NOSSA LOCALIZAÇÃO */
  section#localizacao h2 {
    margin-bottom: 20px;
  }
  /* SUPPORT */
  section#suporte {
    height: 200px;
    flex-flow: column nowrap;
  }
}

/*# sourceMappingURL=index.css.map */
