/* ================================================
   ESTILO GERAL - DARIK CORRETORA DE SEGUROS
   ================================================ */

:root {
  --azul-escuro: #0c2d57;
  --azul-medio: #155fa0;
  --azul-claro: #e8f2fc;
  --cinza: #555;
  --branco: #fff;
  --cinza-claro: #f5f7fa;
  --radius: 10px;
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  --font: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  color: var(--cinza);
  background-color: var(--branco);
  line-height: 1.6;
}

/* ================================================
   TOPO
   ================================================ */

.topbar {
  background-color: var(--branco);
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand .logo {
  width: 160px;
  height: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--azul-escuro);
}

.brand-text strong {
  font-size: 18px;
  color: var(--azul-escuro);
}

.contact {
  font-size: 14px;
}

.contact a {
  color: var(--azul-escuro);
  text-decoration: none;
  font-weight: 500;
}

.contact .divider {
  margin: 0 8px;
  color: #aaa;
}

/* ================================================
   HERO
   ================================================ */

.hero {
  background: var(--azul-claro);
  padding: 60px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.col {
  flex: 1 1 45%;
}

h1, h2, h3, h4 {
  color: var(--azul-escuro);
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.hero p.lead {
  margin-bottom: 20px;
  color: var(--cinza);
}

ul.bullets {
  list-style: none;
  margin-bottom: 20px;
}

ul.bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

ul.bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--azul-medio);
  font-weight: bold;
}

.cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  background-color: var(--azul-medio);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--azul-escuro);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--azul-medio);
  color: var(--azul-medio);
}

.btn-secondary:hover {
  background-color: var(--azul-medio);
  color: white;
}

/* ================================================
   IMAGENS / MOCKUPS
   ================================================ */

.mockup img {
  max-width: 420px;
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: block;
}

/* ================================================
   SEÇÃO "FEATURE"
   ================================================ */

.feature {
  padding: 60px 0;
  background-color: var(--branco);
}

.feature.alt {
  background-color: var(--cinza-claro);
}

.feature h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.feature p {
  margin-bottom: 10px;
}

/* ================================================
   PRODUTOS
   ================================================ */

.products {
  background-color: var(--azul-claro);
  padding: 60px 0;
}

.products h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.product-card {
  background-color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  margin-bottom: 30px;
}

.product-card h3 {
  color: var(--azul-escuro);
  margin-bottom: 10px;
}

.product-card p {
  color: var(--cinza);
  margin-bottom: 10px;
}

.product-card ul {
  list-style: disc;
  margin-left: 20px;
  color: var(--azul-escuro);
}

/* ================================================
   FORMULÁRIO (OUTROS SEGUROS)
   ================================================ */

.lead-form {
  margin-top: 20px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid .full {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid #ccc;
  font-family: var(--font);
}

.lead-form button {
  margin-top: 20px;
  width: 100%;
  background-color: var(--azul-medio);
  color: white;
  border: none;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.lead-form button:hover {
  background-color: var(--azul-escuro);
}

/* ================================================
   RODAPÉ
   ================================================ */

.footer {
  background-color: var(--azul-escuro);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer .logo.small {
  width: 100px;
  height: auto;
}

.foot-link {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.copy {
  margin-top: 20px;
  font-size: 13px;
  color: #ccc;
}

/* ================================================
   RESPONSIVIDADE
   ================================================ */

@media (max-width: 768px) {
  .split {
    flex-direction: column;
    text-align: center;
  }

  .brand .logo {
    width: 120px;
  }

  .mockup img {
    max-width: 300px;
    margin: 0 auto;
  }

  .cta {
    justify-content: center;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================
   AJUSTE HEADER MOBILE - DARIK
   ===================================== */

@media (max-width: 768px) {
  .topbar {
    text-align: center;
    padding: 15px 0;
  }

  .topbar .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .brand .logo {
    max-width: 100px;
  }

  .brand-text {
    line-height: 1.2;
  }

  .brand-text strong {
    font-size: 17px;
    display: block;
  }

  .brand-text span {
    font-size: 12px;
    color: #155fa0;
  }

  .contact {
    flex-direction: column;
    text-align: center;
    font-size: 15px;
    gap: 3px;
  }

  .contact .divider {
    display: none;
  }

  .contact a {
    display: block;
    font-weight: 600;
    color: #0c2d57;
  }
}

