@font-face {
  font-family: Quicksand;
  src: url("./fonts/Quicksand-Bold.ttf") format("truetype");
  font-weight: bold;
}

@font-face {
  font-family: Quicksand;
  src: url("./fonts/Quicksand-Light.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: Quicksand;
  src: url("./fonts/Quicksand-Medium.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: Quicksand;
  src: url("./fonts/Quicksand-Regular.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: Quicksand;
  src: url("./fonts/Quicksand-SemiBold.ttf") format("truetype");
  font-weight: 600;
}

:root {
  --primary-color: #b9ff66;
  --secondary-color: #191a23;
  --body-color: #f3f3f3;
  --red: #d6011b;
  --green: #baea36;
  --dark-green: #336621;
  --black: #191a23;
  --light-grey: #f3f3f3;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Quicksand;
  background-color: white;
}

main {
  padding-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  main {
    padding-bottom: 30px;
  }
}

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

.footer-heading {
  font-size: 20px;
  display: inline-block;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  border-radius: 4px;
}

.heading p {
  font-size: 14px;
}

/* Hero Section Start */

.hero-section {
  background-color: var(--green);
  background-image: url("./images/hero-bg-ptn.png");
}

.hero-section a {
  padding: 18px 40px;
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  border-radius: 10px;
  text-decoration: none;
  background-color: var(--dark-green);
  align-self: flex-start;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.hero-section .hero-content h1 {
  font-size: 56px;
  font-weight: 600;
  color: var(--dark-green);
}

.hero-section .hero-content p {
  font-size: 30px;
  font-weight: 400;
  color: var(--dark-green);
}

.hero-logo {
  position: absolute;
  right: 50px;
  top: 25px;
}

.description h2 {
  font-size: 48px;
  font-weight: 600;
  color: white;
}

.description p {
  font-size: 24px;
  font-weight: 300;
  color: white;
}

.description a {
  padding: 10px 20px;
  font-size: 24px;
  font-weight: 400;
  color: var(--red);
  border-radius: 10px;
  text-decoration: none;
  background-color: white;
}

.description img {
  object-fit: contain;
}

/* Services Section Start */

.description .votacao-card.votacao-card-one,
.description .votacao-card.votacao-card-two {
  background-color: var(--red);
  border: 1px solid var(--secondary-color);
  /* border-bottom: 3px solid var(--secondary-color); */
  border-radius: 25px;
  padding: 25px;
}

.votacao .heading > h2,
.biografia .heading > h2,
.caracteristicas .heading > h2,
.votacao .heading > h2,
.contact-us .heading > h2 {
  font-size: 40px;
  align-self: flex-start;
  background-color: var(--green);
  color: var(--dark-green);
  line-height: 1;
  border-radius: 10px;
  padding: 10px;
}

.votacao .votacao-card.votacao-card-two {
  background-color: var(--primary-color);
  /* padding: 34px 25px; */
}

.votacao .votacao-card a i {
  color: var(--green);
  background-color: var(--secondary-color);
  width: 35px;
  height: 35px;
  font-size: 20px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

.votacao .votacao-card a {
  font-weight: bold;
}

.votacao .votacao-card h6 {
  font-size: 26px;
  font-weight: 400;
  color: var(--green);
}

@media (hover: hover) and (pointer: fine) {
  .votacao .votacao-card:hover a i {
    rotate: -30deg;
  }
}

.votacao-card img {
  width: 100%;
  height: 180px;
}

@media only screen and (max-width: 1000px) {
  .votacao-card img {
    width: 150px;
    height: 150px;
  }
}

.votacao .votacao-card a {
  align-items: center;
  color: var(--secondary-color);
}

/* Working Process Start */

.biografia .biografia-title p {
  font-size: 24px;
}

.biografia .accordion-item {
  border: 1px solid var(--secondary-color);
  border-bottom: 3px solid var(--secondary-color);
  border-radius: 30px;
  overflow: hidden;
  /* padding: 20px; */
  background-color: var(--green);
}

.biografia .accordion-item .accordion-button {
  background-color: var(--green);
  padding: 20px 40px;
  border-bottom: 1px solid var(--secondary-color);
  font-size: 30px;
  color: var(--dark-green);
}

.biografia .accordion-item .accordion-collapse.collapse.show,
.biografia .accordion-item .accordion-collapse.collapse.show {
  background-color: var(--green);
  transition: all 0.2s ease-in-out;
  color: var(--dark-green);
}

.biografia .accordion-item .accordion-button:not(.collapsed) {
  color: var(--dark-green);
  transition: all 0.2s ease-in-out;
  background-color: var(--green) !important;
  box-shadow: none;
}

.biografia .accordion-item .accordion-button:focus {
  box-shadow: none;
}

.biografia .accordion-item .accordion-collapse .accordion-body {
  padding: 20px 40px;
  font-size: 22px;
  color: var(--dark-green);
}

.biografia .accordion-item .accordian-numbers {
  font-size: 50px;
  padding-right: 20px;
}

.accordion-button::after {
  background-image: none;
  font-family: "Font Awesome 6 Free";
  /* content: "\f068"; */
  content: "\f067";
  height: 38px;
  width: 38px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--secondary-color);
  background-color: var(--body-color);
  color: var(--secondary-color);
  transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  /* content: "\f067"; */
  content: "\f068";
  transform: rotate(-180deg);
}

.biografia .accordion-item .collapsing {
  transition: all 0.3s ease-in-out;
}

.caracteristicas .caracteristicas-title h2 {
  font-size: 40px;
  align-self: flex-start;
  background-color: var(--red);
  color: white;
}

.caracteristicas .caracteristicas-title p {
  font-size: 24px;
}

.caracteristicas .accordion-item {
  border: 1px solid var(--secondary-color);
  border-bottom: 3px solid var(--secondary-color);
  border-radius: 30px;
  overflow: hidden;
  background-color: var(--red);
}

.caracteristicas .accordion-item .accordion-button {
  background-color: var(--red);
  padding: 20px 40px;
  font-size: 30px;
  color: white;
}

.caracteristicas .accordion-item .accordion-collapse.collapse.show {
  background-color: var(--red);
  transition: all 0.2s ease-in-out;
  color: white;
}

.caracteristicas .accordion-item .accordion-button:not(.collapsed) {
  color: white;
  transition: all 0.2s ease-in-out;
  background-color: var(--red) !important;
  box-shadow: none;
}

.caracteristicas .accordion-item .accordion-button:focus {
  box-shadow: none;
}

.caracteristicas .accordion-item .accordion-collapse .accordion-body {
  padding: 20px 40px;
  font-size: 22px;
  color: white;
}

.caracteristicas .accordion-item .accordian-numbers {
  font-size: 50px;
  padding-right: 20px;
}

.caracteristicas .accordion-item .collapsing {
  transition: all 0.3s ease-in-out;
}

/* Votação section — height fits content, capped at viewport so all 3 cards always visible */
.votacao {
  scroll-margin-top: 8px;
  max-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  padding-bottom: 24px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.votacao > .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.votacao .biografia-title {
  margin-bottom: 0;
}

.votacao .heading {
  margin-bottom: 20px !important;
}

/* Card rows: formula auto-sizes to fill remaining viewport after title + padding overhead */
.votacao .container > .row {
  display: flex;
  height: clamp(120px, calc((100svh - 200px) / 3), 220px);
}

/* .votacao .container > .row.mt-5 {
  margin-top: 0 !important;
} */

.votacao .container > .row > [class*="col"] {
  display: flex;
  min-height: 0;
}

.votacao .votacao-card.votacao-card-one {
  flex: 1;
  min-height: 0;
}

.votacao .votacao-card.votacao-card-one,
.votacao .votacao-card.votacao-card-two {
  position: relative;
  overflow: hidden;
  background-color: var(--red);
  padding: 30px 60px;
  border: 1px solid var(--secondary-color);
  border-bottom: 3px solid var(--secondary-color);
  border-radius: 30px;
}

/* Inner row fills card height so content and mascot align correctly */
.votacao .votacao-card.votacao-card-one > .row {
  min-height: 0;
  height: 100%;
  align-items: stretch;
}

.votacao .votacao-card.votacao-card-one img {
  position: absolute;
  right: 25px;
  bottom: -25px;
  width: auto;
  height: 100%;
}

img#m2 {
  right: 35px;
  bottom: -5px;
}

img#m3 {
  height: 132%;
  bottom: -55px;
  right: -60px;
}

.votacao .votacao-card.votacao-card-one.selected {
  background-color: var(--green);
  padding: 20px 60px;
}

.votacao .votacao-card.votacao-card-one.selected h2 {
  background-color: transparent;
  color: var(--dark-green);
  padding: 0;
}

.votacao .votacao-card.votacao-card-one.selected h6 {
  color: var(--secondary-color);
}

.votacao .votacao-card.votacao-card-one h2 {
  font-size: 40px;
  font-weight: 600;
  align-self: flex-start;
  background-color: white;
  /* color: var(--dark-green); */
  line-height: 1;
  border-radius: 10px;
  padding: 10px;
}

/* Contact Us Start */

.contact-us .contact-wrapper {
  border-radius: 25px;
  padding: 40px 60px;
  background-color: var(--body-color);
}

.contact-us .contact-wrapper input,
.contact-us .contact-wrapper textarea {
  background-color: white;
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  padding: 6px 12px;
}

.contact-us .contact-wrapper input:focus {
  box-shadow: none;
}

.contact-bg {
  position: absolute;
  right: -190px;
  width: 400px;
}

input[type="radio"] {
  display: none; /* Hide the default radio button */
}

.custom-radio {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
  display: inline-block;
  position: relative;
  margin-right: 4px;
}

input[type="radio"]:checked + label .custom-radio::before {
  content: "";
  height: 12px;
  width: 12px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
}

/* Vote Confirmation Bar */

.vote-confirm-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  gap: 20px;
}

.vote-confirm-bar.active {
  transform: translateY(0);
}

.vote-confirm-message {
  font-size: 22px;
  color: white;
  flex: 1;
}

.vote-confirm-message strong {
  color: var(--green);
}

.vote-confirm-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-confirm-vote {
  padding: 12px 28px;
  font-family: Quicksand;
  font-size: 18px;
  font-weight: 700;
  background-color: var(--green);
  color: var(--dark-green);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .btn-confirm-vote:hover {
    opacity: 0.85;
  }
}

.btn-cancel-vote {
  padding: 12px 28px;
  font-family: Quicksand;
  font-size: 18px;
  font-weight: 700;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .btn-cancel-vote:hover {
    opacity: 0.75;
  }
}

@media only screen and (max-width: 768px) {
  .vote-confirm-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
  }

  .vote-confirm-actions {
    width: 100%;
  }

  .btn-confirm-vote,
  .btn-cancel-vote {
    flex: 1;
  }
}

/* Footer Start */

footer .row {
  background-color: var(--dark-green);
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
}

footer img {
  height: 40px;
  width: auto;
}

footer .social-icons a {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 40px;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: var(--dark-green);
}

/* Vote Results */

.vote-result {
  display: none;
  margin-top: 8px;
  width: 100%;
}

.vote-bar-track {
  width: 100%;
  height: 22px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

.vote-bar-fill {
  height: 100%;
  width: 0;
  background-color: white;
  border-radius: 12px;
  transition: width 1s ease-out;
}

.vote-result-text {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.votacao-card.my-vote .vote-bar-fill {
  background-color: var(--dark-green);
}

.votacao-card.my-vote .vote-result-text {
  color: var(--dark-green);
}

.votacao-card.voted-card .vote-result {
  display: block;
}

.votacao-card.voted-card .vote-link {
  display: none !important;
}

.my-vote-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--green);
  color: var(--dark-green);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 0;
  border-radius: 20px;
  margin-top: 6px;
}

footer .subscription {
  padding: 60px 30px;
  background: rgba(41, 42, 50, 1);
  border-radius: 25px;
}

footer .subscription input,
footer .subscription input:focus {
  background-color: transparent;
  border: 1px solid var(--body-color);
  box-shadow: none;
  padding: 10px 20px;
}

footer .subscription input[type="submit"] {
  background-color: var(--primary-color);
}

footer .footer-info {
  border-bottom: 2px solid var(--body-color);
}

/* ===========================
   Mobile
   =========================== */

@media only screen and (max-width: 991px) {
  /* --- Hero Section --- */

  /* Make hero section a flex column so logo can be ordered above content */
  .hero-section {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
  }

  /* Logo: move from absolute positioning to static, centered at top */
  .hero-logo {
    position: static;
    order: -1;
    text-align: center;
    padding: 20px 0 0;
    margin-bottom: 15px;
  }

  .hero-logo img {
    max-height: 90px;
    width: auto;
  }

  /* Container and its children stretch to fill remaining height */
  .hero-section > .container {
    order: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .hero-section > .container > .row {
    flex: 1;
  }

  .hero-section .col-lg-6:first-child {
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    flex: 1;
    justify-content: space-between;
  }

  /* Fluid heading and paragraph fonts — scale from 320px to 991px */
  .hero-section .hero-content h1 {
    font-size: clamp(26px, 7.5vw, 40px);
    text-align: center;
    padding: 0 16px;
  }

  .hero-section .hero-content p {
    font-size: clamp(16px, 4.8vw, 24px);
  }

  /* Button: full width, centered */
  .hero-section a.button {
    width: 100%;
    display: block;
    text-align: center;
    font-size: clamp(16px, 4vw, 20px);
    padding: 14px 24px;
    margin-bottom: 24px;
    align-self: stretch;
  }

  /* --- Section Spacing --- */
  .biografia.my-5,
  .caracteristicas.my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .biografia .heading,
  .caracteristicas .heading {
    margin-bottom: 1.5rem !important;
  }

  /* --- Description Section --- */

  /* Center section titles */
  .description .votacao-card h2,
  .biografia .heading > h2,
  .caracteristicas .heading > h2,
  .votacao .heading > h2 {
    text-align: center;
    align-self: center;
  }

  /* Neutralise Bootstrap row gutters so the description h2 is truly centred */
  .description .votacao-card > .row {
    margin-left: 0;
    margin-right: 0;
  }

  .description .votacao-card > .row > [class*="col"] {
    padding-left: 0;
    padding-right: 0;
  }

  /* description image inside the card should be contained */
  .description img {
    max-height: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  /* Scale description typography */
  .description h2 {
    font-size: clamp(26px, 6vw, 36px);
  }

  .description p {
    font-size: clamp(15px, 4vw, 20px);
  }

  .description a {
    font-size: clamp(15px, 4vw, 20px);
  }

  /* --- Biografia / Características accordion --- */

  .biografia .heading > h2,
  .votacao .heading > h2,
  .caracteristicas .caracteristicas-title h2 {
    font-size: clamp(30px, 6vw, 34px);
  }

  .biografia .biografia-title p,
  .caracteristicas .caracteristicas-title p {
    font-size: clamp(15px, 4vw, 18px);
  }

  .biografia .accordion-item .accordion-button,
  .caracteristicas .accordion-item .accordion-button {
    font-size: clamp(20px, 4.5vw, 24px);
    padding: 14px 18px;
  }

  .biografia .accordion-item .accordian-numbers,
  .caracteristicas .accordion-item .accordian-numbers {
    font-size: clamp(30px, 7vw, 40px);
    padding-right: 12px;
  }

  .accordion-button::after {
    height: 30px;
    width: 30px;
  }

  .biografia .accordion-item .accordion-collapse .accordion-body,
  .caracteristicas .accordion-item .accordion-collapse .accordion-body {
    font-size: clamp(15px, 4vw, 18px);
    padding: 14px 18px;
  }

  /* --- Votacao Section --- */
  /* Viewport-height flex layout lives in base styles. Mobile overrides: */

  .votacao {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .votacao .heading {
    margin-bottom: 10px !important;
  }

  /* Container gap: scales with viewport, capped */
  .votacao > .container {
    gap: min(14px, 1.8svh);
  }

  /* Row height: svh fraction guarantees fit on all phones */
  .votacao .container > .row {
    height: min(185px, 22svh);
  }

  /* Compact card internals for mobile */
  .votacao .votacao-card.votacao-card-one,
  .votacao .votacao-card.votacao-card-two {
    padding: 14px 18px;
    border-radius: 20px;
  }

  .votacao .votacao-card.votacao-card-one.selected {
    padding: 10px 18px;
  }

  .votacao .votacao-card.votacao-card-one h2 {
    font-size: 28px;
    padding: 8px 12px;
  }

  .votacao .votacao-card .card-tagline {
    font-size: 13px;
    margin-top: 2px;
  }

  .votacao .votacao-card h6 {
    font-size: 19px;
  }

  .votacao .votacao-card a i {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  /* Mascot images: fill card height (no max-height cap) */
  .votacao .votacao-card.votacao-card-one img {
    position: absolute;
    right: 4px;
    bottom: -8px;
    width: auto;
    height: 90%;
  }

  img#m2 {
    right: 4px;
    bottom: -4px;
  }

  img#m3 {
    height: 100%;
    bottom: -22px;
    right: -30px;
  }

  /* Constrain left column so mascot image has room on the right */
  .votacao .votacao-card.votacao-card-one .col-lg-6:first-child {
    max-width: 60%;
  }

  /* Progress bar: limit width to avoid overlap with image */
  .vote-result {
    max-width: 100%;
  }

  .vote-bar-track {
    max-width: 100%;
  }

  /* Prevent horizontal scroll on any screen */
  body {
    overflow-x: hidden;
  }
}

/* Extra-small phones (< 400px, e.g. iPhone SE 320px) */
@media only screen and (max-width: 399px) {
  .hero-section .hero-content h1 {
    font-size: 24px;
    padding: 0 8px;
  }

  .hero-section .hero-content p {
    font-size: 15px;
  }

  .hero-logo img {
    max-height: 70px;
  }

  /* Reduce votacao card padding further */
  .votacao .votacao-card.votacao-card-one,
  .votacao .votacao-card.votacao-card-two {
    padding: 10px 14px;
  }

  .votacao .heading > h2 {
    font-size: 24px;
  }

  .votacao .votacao-card.votacao-card-one h2 {
    font-size: 23px;
  }

  .votacao .votacao-card h6 {
    font-size: 16px;
  }

  .votacao > .container {
    gap: min(18px, 2.2svh);
  }

  .vote-result-text {
    font-size: 16px;
  }

  .vote-bar-track {
    height: 20px;
  }

  .my-vote-badge {
    font-size: 16px;
  }

  /* Mascot images on tiny screens */
  .votacao .votacao-card.votacao-card-one img {
    height: 90%;
  }

  img#m3 {
    height: 110%;
    bottom: -18px;
  }
}

/* Lead Capture Modal */

.lead-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lead-modal-overlay.active {
  display: flex;
}

.lead-modal-card {
  position: relative;
  background: white;
  border-radius: 30px;
  border-bottom: 3px solid var(--dark-green);
  max-width: 460px;
  width: 100%;
  overflow: hidden;
  font-family: Quicksand;
}

.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--green);
  cursor: pointer;
  line-height: 1;
  z-index: 1;
}

.lead-modal-header {
  background-color: var(--dark-green);
  padding: 28px 32px 24px;
}

.lead-modal-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.lead-modal-header p {
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin: 0;
}

.lead-modal-body {
  padding: 28px 32px;
}

.lead-modal-body .mb-3 {
  margin-bottom: 1.5rem !important;
}

.lead-modal-body .form-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-green);
}

.lead-input {
  background-color: white;
  border: 1px solid var(--black);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: Quicksand;
  font-size: 16px;
}

.lead-input:focus {
  box-shadow: none;
  border-color: var(--dark-green);
  outline: none;
}

.lead-modal-submit {
  background-color: var(--dark-green);
  color: var(--green);
  border: none;
  border-radius: 10px;
  font-family: Quicksand;
  font-size: 18px;
  font-weight: 700;
  padding: 14px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin-top: 12px;
}

@media (hover: hover) and (pointer: fine) {
  .lead-modal-submit:hover {
    opacity: 0.85;
  }
}

.lead-modal-skip {
  display: block;
  margin: 18px auto 0;
  background: none;
  border: none;
  font-family: Quicksand;
  font-size: 14px;
  color: #888;
  cursor: pointer;
  text-decoration: underline;
}

.lead-lgpd {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.lead-lgpd input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--dark-green);
}

.lead-lgpd label {
  font-size: 12px;
  color: #555;
  line-height: 1.4;
  cursor: pointer;
  margin-bottom: 0;
}

.lead-modal-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.lead-modal-status {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  min-height: 20px;
}

@media only screen and (max-width: 480px) {
  .lead-modal-header {
    padding: 20px 20px 18px;
  }

  .lead-modal-header h3 {
    font-size: 22px;
  }

  .lead-modal-body {
    padding: 20px;
  }
}

/* Privacy Policy Modal */

.privacy-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.privacy-modal-overlay.active {
  display: flex;
}

.privacy-modal-card {
  position: relative;
  background: white;
  border-radius: 30px;
  border-bottom: 3px solid var(--dark-green);
  max-width: 620px;
  width: 100%;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  font-family: Quicksand;
}

.privacy-modal-header {
  background-color: var(--dark-green);
  padding: 20px 32px 18px;
  border-radius: 30px 30px 0 0;
  flex-shrink: 0;
}

.privacy-modal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 10px;
}

.privacy-modal-back:hover {
  opacity: 0.8;
  color: var(--green);
}

.privacy-modal-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.privacy-modal-body {
  padding: 24px 32px;
  overflow-y: auto;
  flex: 1;
}

.privacy-modal-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-green);
  margin-top: 18px;
  margin-bottom: 4px;
}

.privacy-modal-body h4:first-child {
  margin-top: 0;
}

.privacy-modal-body p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0;
}

.privacy-modal-body a {
  color: var(--dark-green);
}

.privacy-modal-close-btn {
  display: block;
  width: 100%;
  margin-top: 24px;
  background-color: var(--dark-green);
  color: var(--green);
  border: none;
  border-radius: 10px;
  font-family: Quicksand;
  font-size: 17px;
  font-weight: 700;
  padding: 12px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .privacy-modal-close-btn:hover {
    opacity: 0.85;
  }
}

.privacy-link {
  color: var(--dark-green);
  font-weight: 700;
  text-decoration: underline;
  font-size: 14px;
}

.totem-body .privacy-modal-card {
  max-width: 700px;
}

@media only screen and (max-width: 480px) {
  .privacy-modal-card {
    max-height: 88vh;
  }

  .privacy-modal-header {
    padding: 16px 20px 14px;
  }

  .privacy-modal-body {
    padding: 18px 20px;
  }
}
