/* ===============================
RESET
=============================== */

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* ===============================
CONTAINER
=============================== */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===============================
HEADER
=============================== */

.header {

  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(0, 0, 0, .05);

}

.header-content {

  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 10rem;

}

/* LOGO */

.logo {

  width: 120px;
  transition: transform .3s;

}

.logo:hover {

  transform: scale(1.05);

}

/* ===============================
MENU DESKTOP
=============================== */

.menu-desktop ul {

  display: flex;
  gap: 35px;
  align-items: center;
  list-style: none;

}

.menu-desktop a {

  text-decoration: none;
  color: #030c43;

  font-weight: 600;
  font-size: 16px;

  position: relative;

  transition: color .3s;

}

/* Efeito hover */

.menu-desktop a:hover {

  color: #1f4fd8;

}

/* Linha animada */

.menu-desktop a::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0%;
  height: 2px;

  background: #1f4fd8;

  transition: width .3s;

}

.menu-desktop a:hover::after {

  width: 100%;

}

/* BOTÃO COTAÇÃO */

.menu-desktop .menu-cta {

  background: linear-gradient(135deg, #2ecc71, #27ae60);

  color: white;

  padding: 10px 22px;

  border-radius: 8px;

  font-weight: bold;

  transition: transform .2s, box-shadow .2s;

}

.menu-desktop .menu-cta:hover {

  transform: translateY(-2px);

  box-shadow: 0 8px 18px rgba(0, 0, 0, .15);

}

.menu-desktop .menu-cta::after {

  display: none;

}

/* ===============================
MENU MOBILE
=============================== */

.menu-btn {

  display: none;

  top: 25px;
  right: 25px;

  font-size: 34px;

  background: none;
  border: none;

  cursor: pointer;

  z-index: 2001;

}

.menu-mobile {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;

  background: #0c2d6b;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  opacity: 0;
  pointer-events: none;

  transition: .4s;

  z-index: 2000;

}

.menu-mobile.active {

  opacity: 1;
  pointer-events: auto;

}

.close-btn {

  position: absolute;

  top: 30px;
  right: 30px;

  font-size: 40px;

  background: none;
  border: none;

  color: white;

  cursor: pointer;

}

.menu-mobile ul {

  list-style: none;
  text-align: center;

}

.menu-mobile li {

  margin: 22px 0;

}

.menu-mobile a {

  font-size: 24px;
  color: white;

  text-decoration: none;

}

.menu-mobile a:hover {

  color: #2ecc71;

}

/* BOTÃO COTAÇÃO */

.menu-cta {

  display: inline-block;

  background: #2ecc71;

  padding: 12px 25px;

  border-radius: 8px;

  font-weight: bold;

}

.menu-cta:hover {

  background: #27ae60;

}

/* ===============================
FORMULÁRIO
=============================== */

.form-section {

  background: url("assets/bg.png") no-repeat center/cover;

  padding: 120px 0;

  position: relative;

}

.form-section::before {

  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(120deg,
      rgba(3, 12, 67, .8),
      rgba(31, 79, 216, .6));

}

.form-container {

  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

}

.form-text {

  flex: 1;
  color: white;

}

.form-text h1 {

  font-size: 2rem;
  margin-bottom: 20px;

}

.form-text p {

  font-size: 1.7rem;
  margin-bottom: 10px;

}

.form-card {

  flex: 1;

  background: white;

  padding: 30px;

  border-radius: 14px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, .15);

}

.form-card input,
.form-card select,
.form-card button {

  width: 100%;
  padding: 12px;

  margin: 8px 0;

  border: none;

  border-radius: 6px;

  font-size: 16px;

}

.form-card button {

  background: #2ecc71;
  color: white;

  font-weight: bold;

  cursor: pointer;

}

/* ===============================
PLANOS
=============================== */

.planos-section {

  padding: 60px 0;
  text-align: center;

}

.planos-section h2 {

  font-size: 28px;
  margin-bottom: 30px;

  color: #183066;

}

.planos-grid {

  display: flex;
  flex-wrap: wrap;

  justify-content: center;

  gap: 30px;

}

.planos-grid img {

  width: 150px;

  padding: 15px;

  background: white;

  border-radius: 10px;

  box-shadow: 0 6px 15px rgba(0, 0, 0, .08);

  transition: .3s;

}

.planos-grid img:hover {

  transform: translateY(-6px) scale(1.05);

}

/* ===============================
CARROSSEL
=============================== */

.carousel {

  position: relative;
  margin-top: 40px;

}

.carousel-track-container {

  overflow: hidden;
  width: 100%;

}

.carousel-track {

  display: flex;
  transition: transform .5s;

}

.carousel-track img {

  width: 320px;
  height: 200px;

  object-fit: cover;

  margin: 0 12px;

  border-radius: 12px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);

  cursor: pointer;

}

.carousel-btn {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 45px;
  height: 45px;

  border-radius: 50%;

  border: none;

  background: white;

  font-size: 22px;

  cursor: pointer;

}

.carousel-btn.prev {

  left: -20px;

}

.carousel-btn.next {

  right: -20px;

}

/* ===============================
MODAL
=============================== */

.image-modal {

  display: none;

  position: fixed;

  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, .9);

  justify-content: center;
  align-items: center;

  z-index: 9999;

}

.modal-content {

  max-width: 90%;
  max-height: 90%;

  border-radius: 10px;

}

.close-modal {

  position: absolute;

  top: 30px;
  right: 40px;

  font-size: 40px;

  color: white;

  cursor: pointer;

}

/* ===============================
EMPRESA
=============================== */

.empresa-section {

  background: #f4f4f4;
  padding: 60px 0;

}

.empresa-conteudo {

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 40px;

  flex-wrap: wrap;

}

.empresa-imagem img {

  max-width: 320px;

  border-radius: 10px;

}

.empresa-texto {

  max-width: 600px;

  font-size: 1.1rem;

}

/* ===============================
CONTATO
=============================== */

.contato-section {

  padding: 90px 20px;

  text-align: center;

}

.contato-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  max-width: 900px;

  margin: auto;

}

.contato-item {

  background: white;

  padding: 35px 25px;

  border-radius: 14px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.contato-item a {

  color: #1f4fd8;
  text-decoration: none;

}

/* ===============================
EMPRESA INFO
=============================== */

.empresa-info {

  background: linear-gradient(135deg, #183066, #1f4fd8);

  padding: 70px 20px;

  color: white;

}

.empresa-box {

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 60px;

  flex-wrap: wrap;

}

.empresa-logo img {

  width: 160px;

  background: white;

  padding: 15px;

  border-radius: 12px;

}

.empresa-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

}

.empresa-item {

  display: flex;

  gap: 15px;

  background: rgba(255, 255, 255, .08);

  padding: 18px;

  border-radius: 10px;

}

/* ===============================
FOOTER
=============================== */

.footer {

  background: linear-gradient(90deg, #183066, #1f4fd8);

  color: white;

  text-align: center;

  padding: 30px 0;

}

.footer-links {

  margin-top: 10px;

}

.footer-links a {

  color: white;

  margin: 0 10px;

  text-decoration: none;

}

.menu-mobile.active+.menu-btn {
  display: none;
}

/* ===============================
REGISTRO SUSEP
=============================== */

.susep-section {

  background: #f4f4f4;
  padding: 40px 20px;

}

.susep-box {

  max-width: 900px;
  margin: auto;

  background: white;

  padding: 30px 40px;

  border-radius: 8px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

  font-size: 16px;
  line-height: 1.7;

  color: #333;

}

.susep-products {

  margin: 15px 0;

  font-weight: 600;

}

/* ===============================
RESPONSIVO
=============================== */

@media(max-width:900px) {
  .menu-desktop {
    display: none;
  }

  .menu-btn {
    display: block;
    font-size: 3rem;
    color: #07286f;
  }

  .form-container {
    flex-direction: column;
  }

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

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

}

@media(max-width:600px) {

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

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

  .carousel-track img {

    width: 220px;
    height: 150px;

  }

}