:root {
  --navy: #03315B;
  --navy-dark: #021F39;
  --green: #20B878;
  --green-dark: #159766;
  --light-green: #EAF9F3;
  --light-blue: #F5FAFD;
  --text: #5F6B76;
  --border: #DFE8ED;
  --white: #FFFFFF;
}


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


html {
  scroll-behavior: smooth;
}


body {
  font-family: Arial, sans-serif;
  color: var(--navy);
  line-height: 1.6;
  background: white;
}


a {
  text-decoration: none;
}


button,
input,
select,
textarea {
  font-family: inherit;
}


/* TOP BAR */

.topbar {
  min-height: 60px;
  padding: 0 5%;
  background: var(--navy);

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


.topbar-item {
  color: white;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
}


.topbar-item i {
  color: var(--green);
}


/* HEADER */

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid #EDF1F3;
}


.navbar {
  max-width: 1200px;
  min-height: 92px;
  margin: auto;
  padding: 0 24px;

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


.logo {
  display: flex;
  align-items: center;
}


.logo img {
  width: 190px;
  max-height: 60px;
  object-fit: contain;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}


.nav-links > a,
.dropdown-title {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}


.nav-links > a:hover,
.dropdown-title:hover {
  color: var(--green);
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}


.quote-btn {
  padding: 13px 18px;
  border-radius: 12px;
  background: var(--green);
  color: white;
  font-size: 14px;
  font-weight: 800;
}


.menu-btn {
  display: none;
  border: none;
  background: transparent;
  color: var(--navy);
  font-size: 30px;
  cursor: pointer;
}


/* DROPDOWN */

.nav-dropdown {
  position: relative;
}


.dropdown-title {
  border: none;
  background: transparent;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 6px;
}


.dropdown-title i {
  font-size: 10px;
}


.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;

  width: 250px;
  padding: 10px;

  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;

  box-shadow: 0 15px 40px rgba(3,49,91,0.12);

  display: none;
}


.nav-dropdown:hover .dropdown-menu {
  display: block;
}


.dropdown-menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}


.dropdown-menu a:hover,
.dropdown-menu .active-dropdown {
  color: var(--green);
  background: var(--light-green);
}


/* HERO */

.vehicle-hero {
  min-height: 650px;
  padding: 80px max(5%, 20px);

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;

  background:
    radial-gradient(
      circle at 80% 45%,
      rgba(32,184,120,0.16),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #F5FAFD,
      #FFFFFF
    );
}


.hero-content {
  max-width: 700px;
}


.hero-badge,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 9px 18px;
  border-radius: 30px;

  background: var(--light-green);
  color: #198D61;

  font-size: 13px;
  font-weight: 800;
}


.hero-content h1 {
  margin: 24px 0 20px;
  font-size: clamp(42px, 5vw, 65px);
  line-height: 1.08;
}


.hero-content h1 span {
  display: block;
  color: var(--green);
}


.hero-content > p {
  max-width: 650px;
  color: var(--text);
  font-size: 18px;
}


.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 15px;
}


.primary-btn,
.secondary-btn {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 13px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-weight: 800;
}


.primary-btn {
  background: var(--green);
  color: white;
}


.secondary-btn {
  background: white;
  color: var(--navy);
  border: 2px solid var(--border);
}


.hero-points {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}


.hero-points span {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}


.hero-points i {
  margin-right: 6px;
  color: var(--green);
}


/* HERO VISUAL */

.hero-visual {
  display: flex;
  justify-content: center;
}


.visual-circle {
  width: 430px;
  height: 430px;
  max-width: 100%;

  border-radius: 50%;
  background: rgba(32,184,120,0.10);

  position: relative;

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


.main-icon {
  width: 190px;
  height: 190px;
  border-radius: 48px;

  background: linear-gradient(
    135deg,
    var(--green),
    var(--green-dark)
  );

  color: white;
  font-size: 75px;

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

  box-shadow: 0 25px 60px rgba(32,184,120,0.28);
}


.floating-card {
  position: absolute;
  min-width: 210px;
  padding: 14px 16px;

  background: white;
  border-radius: 15px;

  box-shadow: 0 15px 40px rgba(3,49,91,0.13);

  display: flex;
  align-items: center;
  gap: 11px;
}


.floating-card > i {
  width: 40px;
  height: 40px;
  min-width: 40px;

  border-radius: 12px;

  background: var(--light-green);
  color: var(--green);

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


.floating-card strong,
.floating-card small {
  display: block;
}


.floating-card strong {
  font-size: 14px;
}


.floating-card small {
  color: var(--text);
  font-size: 11px;
}


.card-one {
  top: 40px;
  left: -30px;
}


.card-two {
  top: 170px;
  right: -35px;
}


.card-three {
  bottom: 25px;
  left: 5px;
}


/* SECTION HEADING */

.section-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}


.section-heading h2 {
  margin: 18px 0 13px;
  font-size: clamp(34px, 4vw, 49px);
  line-height: 1.15;
}


.section-heading h2 span {
  display: block;
  color: var(--green);
}


.section-heading p {
  color: var(--text);
  font-size: 17px;
}


/* TYPES */

.types-section {
  padding: 105px 20px;
}


.type-grid {
  max-width: 1150px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}


.type-grid.two-column {
  max-width: 800px;
  grid-template-columns: 1fr 1fr;
}


.type-card {
  position: relative;
  padding: 32px 28px;

  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;

  transition: 0.3s;
  overflow: hidden;
}


.type-card:hover {
  transform: translateY(-7px);
  border-color: rgba(32,184,120,0.45);
  box-shadow: 0 20px 50px rgba(3,49,91,0.10);
}


.type-icon {
  width: 65px;
  height: 65px;
  margin-bottom: 22px;

  border-radius: 18px;

  background: var(--light-green);
  color: var(--green);

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

  font-size: 26px;
}


.card-number {
  position: absolute;
  top: 18px;
  right: 20px;

  color: #E4EDF1;
  font-size: 31px;
  font-weight: 900;
}


.featured-tag {
  position: absolute;
  top: 0;
  right: 20px;

  padding: 5px 11px;

  background: var(--navy);
  color: white;

  border-radius: 0 0 9px 9px;

  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.8px;
}


.type-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}


.type-card > p {
  min-height: 100px;
  color: var(--text);
  font-size: 14px;
}


.type-card ul {
  list-style: none;
  margin: 20px 0;
}


.type-card li {
  margin-bottom: 9px;
  color: var(--text);
  font-size: 13px;
}


.type-card li i {
  margin-right: 7px;
  color: var(--green);
}


.type-card > a {
  color: var(--green);
  font-weight: 800;
}


/* COVER */

.cover-section {
  padding: 105px 20px;
  background: #F7FAFC;
}


.cover-grid {
  max-width: 1000px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}


.cover-card {
  padding: 30px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
}


.cover-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;

  border-radius: 17px;

  background: var(--light-green);
  color: var(--green);

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

  font-size: 24px;
}


.cover-card h3 {
  margin-bottom: 9px;
}


.cover-card p {
  color: var(--text);
  font-size: 14px;
}


/* BENEFITS */

.benefits-section {
  padding: 110px 20px;
  background: var(--navy);
}


.benefits-wrapper {
  max-width: 1150px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
}


.dark-label {
  background: rgba(32,184,120,0.15);
  color: #55D5A1;
}


.benefits-content h2 {
  margin: 20px 0;
  color: white;
  font-size: clamp(36px, 4vw, 51px);
  line-height: 1.13;
}


.benefits-content h2 span {
  display: block;
  color: var(--green);
}


.benefits-content > p {
  color: #C1CFD8;
}


.benefit-list {
  margin-top: 28px;

  display: flex;
  flex-direction: column;
  gap: 18px;
}


.benefit-list > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}


.benefit-list > div > i {
  margin-top: 5px;
  color: var(--green);
}


.benefit-list span {
  color: #C1CFD8;
  font-size: 14px;
}


.benefit-list strong {
  display: block;
  color: white;
  font-size: 16px;
}


.benefit-visual {
  min-height: 450px;

  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.10);

  background: rgba(255,255,255,0.06);

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

  position: relative;
}


.shield-circle {
  width: 190px;
  height: 190px;

  border-radius: 50px;

  background: var(--green);
  color: white;

  font-size: 75px;

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


.visual-label {
  position: absolute;
  bottom: 45px;

  padding: 15px 20px;

  background: white;
  color: var(--navy);

  border-radius: 14px;
  font-weight: 800;
}


.visual-label i {
  margin-right: 7px;
  color: var(--green);
}


/* QUOTE */

.quote-section {
  padding: 110px 20px;
}


.quote-wrapper {
  max-width: 1150px;
  margin: auto;

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}


.quote-content h2 {
  margin: 20px 0;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.13;
}


.quote-content h2 span {
  display: block;
  color: var(--green);
}


.quote-content > p {
  color: var(--text);
}


.contact-box {
  margin-top: 30px;
  padding: 18px;

  border-radius: 16px;
  background: var(--light-green);

  display: flex;
  align-items: center;
  gap: 13px;
}


.contact-box > i {
  width: 48px;
  height: 48px;

  border-radius: 14px;

  background: var(--green);
  color: white;

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


.contact-box small,
.contact-box a {
  display: block;
}


.contact-box small {
  color: var(--text);
}


.contact-box a {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}


.form-box {
  padding: 35px;

  background: white;
  border-radius: 24px;

  box-shadow: 0 20px 60px rgba(3,49,91,0.09);
}


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}


.form-group {
  margin-bottom: 17px;
}


.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 800;
}


.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;

  border: 1px solid var(--border);
  border-radius: 10px;

  outline: none;
  color: var(--navy);
  background: white;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}


.submit-btn {
  width: 100%;
  padding: 16px;

  border: none;
  border-radius: 12px;

  background: var(--green);
  color: white;

  cursor: pointer;

  font-size: 15px;
  font-weight: 800;
}


/* SWITCH CTA */

.switch-section {
  padding: 40px 20px 90px;
}


.switch-box {
  max-width: 1150px;
  margin: auto;
  padding: 35px;

  border-radius: 25px;

  background: linear-gradient(
    135deg,
    var(--navy),
    #064878
  );

  color: white;

  display: flex;
  align-items: center;
  gap: 22px;
}


.switch-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;

  border-radius: 20px;

  background: var(--green);

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

  font-size: 30px;
}


.switch-content {
  flex: 1;
}


.switch-content span {
  color: #56D7A2;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}


.switch-content h2 {
  margin: 3px 0;
  font-size: 24px;
}


.switch-content p {
  color: #C3D0D9;
}


.switch-box > a {
  padding: 14px 18px;

  border-radius: 12px;

  background: white;
  color: var(--navy);

  font-weight: 800;
  white-space: nowrap;
}


/* FAQ */

.faq-section {
  padding: 100px 20px;
  background: #F7FAFC;
}


.faq-container {
  max-width: 850px;
  margin: auto;
}


.faq-item {
  margin-bottom: 14px;

  background: white;
  border: 1px solid var(--border);
  border-radius: 15px;

  overflow: hidden;
}


.faq-question {
  width: 100%;
  padding: 20px 22px;

  border: none;

  background: white;
  color: var(--navy);

  cursor: pointer;

  font-size: 16px;
  font-weight: 800;
  text-align: left;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}


.faq-question i {
  color: var(--green);
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}


.faq-answer p {
  padding: 0 22px 22px;
  color: var(--text);
  font-size: 14px;
}


.faq-item.active .faq-answer {
  max-height: 350px;
}


.faq-item.active .faq-question {
  color: var(--green);
}


/* FOOTER */

.footer {
  padding-top: 60px;
  background: var(--navy-dark);
  color: white;
}


.footer-container {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px 50px;

  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
}


.footer-brand img {
  width: 190px;
  height: auto;
  display: block;
}


.footer-brand p {
  max-width: 340px;
  margin: 20px 0;
  color: #B9C6D0;
}


.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.footer-links h3 {
  margin-bottom: 8px;
}


.footer-links a {
  color: #B9C6D0;
  font-size: 14px;
}


.footer-links a:hover {
  color: var(--green);
}


.footer-bottom {
  padding: 20px;

  border-top: 1px solid rgba(255,255,255,0.1);

  color: #9DAFBD;
  text-align: center;
  font-size: 13px;
}


/* WHATSAPP */

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;

  width: 58px;
  height: 58px;

  border-radius: 50%;

  background: #25D366;
  color: white;

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

  font-size: 30px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.20);

  z-index: 999;
}


/* TABLET */

@media (max-width: 1000px) {

  .nav-links {
    position: absolute;

    top: 92px;
    left: 0;
    right: 0;

    padding: 25px;

    background: white;

    display: none;
    flex-direction: column;
    align-items: stretch;

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


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


  .menu-btn {
    display: block;
  }


  .nav-dropdown {
    width: 100%;
  }


  .dropdown-title {
    width: 100%;
    justify-content: space-between;
  }


  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 10px;
    box-shadow: none;
  }


  .nav-dropdown:hover .dropdown-menu {
    display: none;
  }


  .nav-dropdown.open .dropdown-menu {
    display: block;
  }


  .vehicle-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }


  .hero-content {
    margin: auto;
  }


  .hero-actions,
  .hero-points {
    justify-content: center;
  }


  .hero-visual {
    display: none;
  }


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


  .benefits-wrapper,
  .quote-wrapper {
    grid-template-columns: 1fr;
  }


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

}


/* MOBILE */

@media (max-width: 700px) {

  .topbar {
    min-height: 60px;
    padding: 0 5%;
  }


  .topbar-item {
    font-size: 12px;
  }


  .navbar {
    min-height: 112px;
    padding: 0 20px;
  }


  .logo img {
    width: 230px;
    max-width: 48vw;
  }


  .nav-links {
    top: 112px;
  }


  .quote-btn {
    padding: 12px 14px;
    font-size: 13px;
  }


  .header-actions {
    gap: 12px;
  }


  .vehicle-hero {
    min-height: auto;
    padding: 65px 22px 75px;
  }


  .hero-content h1 {
    font-size: 42px;
  }


  .hero-content > p {
    font-size: 16px;
  }


  .hero-actions {
    flex-direction: column;
  }


  .primary-btn,
  .secondary-btn {
    width: 100%;
  }


  .hero-points {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }


  .types-section,
  .cover-section,
  .benefits-section,
  .quote-section,
  .faq-section {
    padding: 75px 20px;
  }


  .type-grid,
  .type-grid.two-column,
  .cover-grid {
    grid-template-columns: 1fr;
  }


  .type-card > p {
    min-height: auto;
  }


  .benefit-visual {
    display: none;
  }


  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }


  .form-box {
    padding: 25px 20px;
  }


  .switch-box {
    padding: 28px 22px;
    flex-direction: column;
    align-items: flex-start;
  }


  .switch-box > a {
    width: 100%;
    text-align: center;
  }


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

  }
