@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

:root {
  --primary: #01e2e2;
  --primary-dark: #00353a;
  --bg-gradient: linear-gradient(135deg, #00353a 0%, #01e2e2 100%);
  --bg-dark: #002024;
  --white: #fff;
  --text: #fff;
  --card-bg: rgba(0, 230, 255, 0.05);
  --card-border: #01e2e2;
  --efect: #008c8c;
  --light: #94ffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--bg-gradient);
  color: var(--text);
  width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ================= ANIMAÇÃO DE ENTRADA ================= */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

h1, h2, h3, p, .tip, .sobre__destaque-item {
  animation: slideInFromLeft 0.6s ease-out forwards;
  opacity: 0;
}

h1 { animation-delay: 0.1s; }
h2 { animation-delay: 0.2s; }
h3 { animation-delay: 0.3s; }
p { animation-delay: 0.4s; }

/* ================= CONTAINER PRINCIPAL ================= */
.container-principal {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

/* ================= HEADER (ESTILO BKL) ================= */
.cabecalho {
  background: var(--bg-dark);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.cabecalho__conteudo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#logo-cabecalho {
height: 30px;

}

.cabecalho__lista-nav {
  list-style: none;
  display: none;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.cabecalho__link-nav {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.cabecalho__link-nav:hover {
  color: var(--white);
}

.cabecalho__toggle {
  font-size: 1.5rem;
  cursor: pointer;
  display: block;
  color: var(--primary);
}

.cabecalho__btn-cta {
  display: none;
  margin-top: 0;
}

/* HEADER - Correções */
.cabecalho__conteudo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cabecalho__navegacao {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cabecalho__lista-nav {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    align-items: center;
}

.cabecalho__link-nav {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.cabecalho__link-nav:hover {
    color: var(--white);
}

.cabecalho__toggle {
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    color: var(--primary);
}

/* Mobile */
@media (max-width: 899px) {
    .cabecalho__toggle {
        display: block;
    }

    .cabecalho__lista-nav {
        display: none;
    }

    .cabecalho__navegacao.is-active .cabecalho__lista-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        height: auto;
        min-height: 100vh;
        width: auto;
        max-width: 320px;
        background: var(--bg-dark);
        box-shadow: -2px 0 24px 0 rgba(0, 0, 0, 0.18);
        padding: 2.5rem 2rem 2rem 2rem;
        padding-bottom: 10px;
        z-index: 200;
        transform: translateX(0);
        transition: transform 0.3s ease;
    }

    .cabecalho__navegacao.is-active .cabecalho__lista-nav li {
        margin: 0.7rem 0;
        margin-left: 10px;
    }
}

/* Desktop */
@media (min-width: 900px) {
    .cabecalho__lista-nav {
        display: flex !important;
        flex-direction: row;
        position: static;
        height: auto;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    .cabecalho__toggle {
        display: none !important;
    }
}
/* Menu Mobile Lateral  */
.cabecalho__navegacao.is-active .cabecalho__lista-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  height: auto;
  min-height: 100vh;
  width: auto;
  max-width: 320px;
  background: var(--bg-dark);
  box-shadow: -2px 0 24px 0 rgba(0, 0, 0, 0.18);
  padding: 2.5rem 2rem 2rem 2rem;
  padding-bottom: 10px;
  z-index: 200;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.cabecalho__navegacao.is-active .cabecalho__lista-nav li {
  margin: 0.7rem 0;
}

.cabecalho__navegacao.is-active .cabecalho__lista-nav a {
  font-size: 1.1rem;
  display: block;
  padding: 0.5rem 0;
}

/* Desktop Menu */
@media (min-width: 900px) {
  .cabecalho__lista-nav {
    display: flex;
    flex-direction: row;
    position: static;
    height: auto;
    width: auto;
    background: none;
    box-shadow: none;
    padding: 0;
  }

  .cabecalho__toggle {
    display: none;
  }

  .cabecalho__btn-cta {
    display: inline-block;
  }

  .cabecalho__navegacao {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

/* ================= BOTÕES ================= */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  transition: 0.3s;
  margin-top: 1rem;
  border-radius: 50px;
  border: none;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  background: var(--primary);
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  background: var(--efect);
}

.btn--primario {
  background: var(--primary);
  color: var(--bg-dark);
}

.btn--primario:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.btn--secundario {
  background: var(--primary);
  color: var(--bg-dark);
}

.btn--secundario:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.cabecalho__btn-cta {
  display: none;
}

@media (min-width: 900px) {
  .cabecalho__btn-cta {
    display: inline-block;
  }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url(./assets/hero.jpg) center/cover no-repeat;
  filter: brightness(0.4);
  z-index: 0;
  transition: transform 2s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  transform: scale(1);
}

.hero-bg.zoom {
  transform: scale(1.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--primary);
  padding: 2.5rem 1rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.2rem;
  margin-top: 50px;
  color: var(--white);
  line-height: 1.1;

}

.hero-content h2 {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.hero-content p {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: var(--primary);
  color: var(--bg-dark);
  border: none;
  border-radius: 20px;
  padding: 0.7rem 1.7rem;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s, transform 0.3s cubic-bezier(.4,0,.2,1);
  margin-top: 1.2rem;
}

.cta-btn:hover, 
.cta-btn:focus {
  background: var(--white);
  color: var(--primary-dark);
  transform: scale(1.07); 
}

/* ================= SEÇÕES ================= */
section {
  width: 100%;
  padding: 4rem 1rem;
}

/* DICAS */
.tips {
  background: none;
}

.tips-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.tip {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.tip h3 {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tip p {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.6;
}

/* SOBRE */
.secao-sobre {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 4rem 1rem;
}

.sobre__container-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.sobre__coluna-imagem {
  width: 100%;
  text-align: center;
}

.sobre__imagem {
  max-width: 100%;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sobre__coluna-conteudo {
  width: 100%;
  text-align: left;
}

.sobre__texto-container h2,
.sobre__texto-container h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.sobre__texto-container h2 {
  font-size: 1.2rem;
  font-weight: 500;
}

.sobre__texto-container h3 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.sobre__texto-container p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.sobre__cards-container {
  margin-top: 2rem;
}

.sobre__destaques {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sobre__destaque-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--primary);
  background: var(--card-bg);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--card-border);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  justify-content: center;
}

.sobre__destaque-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.sobre__destaque-item i {
  color: var(--light);
  font-size: 1.2rem;
}

/* Desktop - Sobre */
@media (min-width: 900px) {
  .sobre__container-flex {
    flex-direction: row;
    gap: 40px;
    align-items: center;
    text-align: left;
  }

  .sobre__coluna-imagem {
    flex: 0 0 40%;
  }

  .sobre__coluna-conteudo {
    flex: 0 0 60%;
  }

  .sobre__destaques {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .sobre__destaque-item {
    flex: 1 1 calc((100% - 30px) / 3);
  }
}

/* FAQ */
/* FAQ */
.faq {
  background: none;
  padding: 4rem 1rem;
}

.faq h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--primary);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.faq-question {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.2s;
  color: var(--primary-dark);
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: transparent;
  color: var(--primary-dark);
  font-size: 0.97rem;
  padding: 0 1.5rem;
  transition: max-height 0.3s ease, padding 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem 1.5rem;
}

/* ================= FOOTER ================= */
.rodape {
  background: var(--primary-dark);
  color: #fff;
  padding: 3rem 1rem 0;
  font-size: 1rem;
  text-align: left;
}

.rodape__conteudo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 2rem;
}

.rodape__conteudo h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.rodape__logo-info {
  text-align: center;
}

#logo-rodape {
  width: auto;
  height: 30px;
  margin-bottom: 1rem;
}

.rodape__lista-menu,
.rodape__lista-contato,
.rodape__lista-legal {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rodape__link {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 0.2rem 0;
  transition: color 0.3s ease;
}

.rodape__link:hover {
  color: var(--primary);
}

.rodape__lista-contato li {
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .rodape__conteudo {
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
    text-align: left;
  }

  .rodape__logo-info {
    text-align: left;
  }
}

.rodape__aviso-legal {
  background: var(--bg-dark);
  color: var(--light);
  padding: 1.5rem 1rem;
  margin-top: 2rem;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  border-top: 1px solid #555;
}

.rodape__aviso-legal p {
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
  color: white;
  font-size: 0.85rem;
}

.rodape__copyright {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--card-border);
  text-align: center;
}

/* ================= COOKIES ================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  color: #00353a;
  padding: 1.5rem 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
}

.cookie-banner.show {
  display: flex;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  width: 100%;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.cookie-content p {
  margin: 0;
  color: #00353a;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-link {
  color: #01e2e2;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s;
}

.cookie-link:hover {
  color: #008c8c;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-cookie {
  border: none;
  border-radius: 20px;
  background: #01e2e2;
  color: #00353a;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 1.4rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.18s;
  margin: 0;
}

.btn-cookie:hover {
  background: #00353a;
  color: #fff;
  transform: scale(1.05);
}

.btn--primario {
  background: #00353a;
  color: #fff;
}

.btn--primario:hover {
  background: #01e2e2;
  color: #00353a;
}

/* Desktop Cookies */
@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Animação de entrada dos cards no scroll - APENAS MOBILE */
@media (max-width: 768px) {
  .card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .card.visible {
    opacity: 1;
    transform: translateY(0);
  }
}