/* ========================================
   FISHIN - Landing Page (Modelo Teste)
   Cores: azul oceano + verde agua + branco
   ======================================== */

/* === Reset e base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0369a1;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #0369a1;
}

.btn-nav {
  background: #0369a1;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  transition: background 0.2s;
}

.btn-nav:hover {
  background: #0284c7;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #0369a1;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 40%, #0ea5e9 100%);
  color: #fff;
  padding-top: 70px;
}

.hero-content {
  text-align: center;
  padding: 60px 0 120px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.destaque {
  color: #67e8f9;
}

.subtitulo {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Botões globais */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #10b981;
  color: #fff;
}

.btn-primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Onda decorativa entre hero e serviços */
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* === SEÇÕES COMUNS === */
.titulo-secao {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: #0c4a6e;
}

.descricao-secao {
  text-align: center;
  color: #64748b;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* === SERVIÇOS === */
.servicos {
  padding: 80px 0;
  background: #fff;
}

.grid-servicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.card-servico {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-servico:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.card-servico h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #0c4a6e;
}

.card-servico p {
  color: #64748b;
  font-size: 0.95rem;
}

/* === SOBRE === */
.sobre {
  padding: 80px 0;
  background: #f0f9ff;
}

.sobre-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.sobre-texto {
  flex: 1;
}

.sobre-texto .titulo-secao {
  text-align: left;
}

.sobre-texto p {
  color: #475569;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.lista-sobre {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
  color: #334155;
}

.sobre-imagem {
  flex: 1;
  display: flex;
  justify-content: center;
}

.placeholder-img {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #0ea5e9, #67e8f9);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.placeholder-img span {
  font-size: 4rem;
  margin-bottom: 12px;
}

.placeholder-img p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* === RESULTADOS === */
.resultados {
  padding: 80px 0;
  background: #0c4a6e;
  color: #fff;
}

.resultados .titulo-secao {
  color: #fff;
}

.grid-numeros {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.numero-item .numero {
  font-size: 2.8rem;
  font-weight: 800;
  color: #67e8f9;
  display: block;
  margin-bottom: 8px;
}

.numero-item p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

/* === CONTATO === */
.contato {
  padding: 80px 0;
  background: #fff;
}

.contato-content {
  max-width: 560px;
  text-align: center;
}

.contato h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0c4a6e;
  margin-bottom: 12px;
}

.contato > .container > p {
  color: #64748b;
  margin-bottom: 36px;
}

.form-contato {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.form-contato input,
.form-contato textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}

.form-contato input:focus,
.form-contato textarea:focus {
  border-color: #0ea5e9;
}

.btn-form {
  width: 100%;
  font-size: 1.05rem;
  padding: 16px;
}

.form-aviso {
  margin-top: 16px;
  font-weight: 600;
  min-height: 24px;
}

/* === FOOTER === */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 40px 0;
}

.footer-content {
  text-align: center;
}

.logo-footer {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0ea5e9;
  margin-bottom: 8px;
}

.footer-links {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #0ea5e9;
}

/* ========================================
   RESPONSIVO (MOBILE)
   ======================================== */
@media (max-width: 768px) {
  /* Menu mobile */
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  /* Hero menor no mobile */
  .hero h1 {
    font-size: 2rem;
  }

  .subtitulo {
    font-size: 1rem;
  }

  /* Sobre empilhado */
  .sobre-content {
    flex-direction: column;
    text-align: center;
  }

  .sobre-texto .titulo-secao {
    text-align: center;
  }

  .placeholder-img {
    width: 220px;
    height: 220px;
  }

  /* Números menores */
  .numero-item .numero {
    font-size: 2.2rem;
  }
}
