.legal-container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #2c3e50;
  line-height: 1.7;
}

.legal-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e2e8f0;
}
.legal-header .legal-title {
  font-size: 2.5rem;
  color: #d32f2f;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.legal-header .legal-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
}
.legal-header .legal-badge {
  display: inline-block;
  background-color: rgba(211, 47, 47, 0.1);
  color: #d32f2f;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.btn--primary {
  display: inline-flex;
  align-items: center;
  background-color: #d32f2f;
  color: #ffffff;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(211, 47, 47, 0.15);
  transition: all 0.3s ease;
}
.btn--primary:hover {
  background-color: darkneen(#d32f2f, 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(211, 47, 47, 0.2);
  color: #ffffff;
}

.legal-content {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.legal-content .legal-section {
  margin-bottom: 3.5rem;
}
.legal-content .legal-section:last-child {
  margin-bottom: 0;
}
.legal-content .legal-section h2 {
  font-size: 1.5rem;
  color: #d32f2f;
  border-left: 4px solid #2e7d32;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.legal-content .legal-section h3 {
  font-size: 1.2rem;
  color: #334155;
  margin: 1.5rem 0 1rem 0;
  font-weight: 600;
}
.legal-content .legal-section p {
  margin-bottom: 1.2rem;
  text-align: justify;
}
.legal-content .legal-section p strong {
  color: #0f172a;
}
.legal-content .legal-section ul,
.legal-content .legal-section ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.legal-content .legal-section ul li,
.legal-content .legal-section ol li {
  margin-bottom: 0.8rem;
  position: relative;
  text-align: justify;
}
.legal-content .legal-section ul li {
  list-style-type: square;
}
.legal-content .legal-section ul li::marker {
  color: #2e7d32;
}
.legal-content .legal-section ol li {
  list-style-type: decimal;
}
.legal-content .legal-section ol li::marker {
  color: #d32f2f;
  font-weight: bold;
}

@media (max-width: 768px) {
  .legal-container {
    margin: 1.5rem auto;
  }
  .legal-header {
    margin-bottom: 2rem;
  }
  .legal-header .legal-title {
    font-size: 1.8rem;
  }
  .legal-content {
    padding: 1.5rem;
  }
}
.contact-container {
  max-width: 600px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-header h1 {
  color: #d32f2f;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.contact-header p {
  color: #666;
}

.form {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #ef6c00;
}
.form__group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.form__label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.9rem;
}
.form__input, .form__textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: #d32f2f;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.15);
}
.form__input--invalid, .form__textarea--invalid {
  border-color: #dc3545 !important;
  background-color: #fff8f8;
}
.form__input--invalid:focus, .form__textarea--invalid:focus {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15) !important;
}
.form__textarea {
  resize: vertical;
}
.form__submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1rem;
  cursor: pointer;
}

.thanks-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 2rem;
}

.thanks-card {
  background-color: #ffffff;
  max-width: 550px;
  width: 100%;
  padding: 3rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #28a745;
  text-align: center;
}
.thanks-card__icon {
  color: #28a745;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
}
.thanks-card__icon svg {
  width: 100%;
  height: 100%;
}
.thanks-card__title {
  color: #d32f2f;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.thanks-card__text {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.thanks-card__actions .btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.8rem 2rem;
  font-weight: 600;
}

.page-container {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
}
.page-header h1 {
  color: #d32f2f;
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}
.page-header .subtitle {
  color: #666;
  font-size: 1.1rem;
}

.section-about {
  margin-bottom: 4rem;
  line-height: 1.8;
  color: #444;
  font-size: 1.1rem;
}
.section-about h2 {
  color: #d32f2f;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #ef6c00;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.grid-mv {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .grid-mv {
    grid-template-columns: 1fr 1fr;
  }
}

.card-mv {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border-left: 4px solid #ef6c00;
  transition: transform 0.2s ease;
}
.card-mv:hover {
  transform: translateY(-3px);
}
.card-mv h2 {
  color: #d32f2f;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.card-mv p {
  color: #555;
  line-height: 1.6;
}

.page-container {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
}
.page-header h1 {
  color: #d32f2f;
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}
.page-header .subtitle {
  color: #666;
  font-size: 1.1rem;
}

.section-about {
  margin-bottom: 4rem;
  line-height: 1.8;
  color: #444;
  font-size: 1.1rem;
}
.section-about h2 {
  color: #d32f2f;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #ef6c00;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.grid-mv {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .grid-mv {
    grid-template-columns: 1fr 1fr;
  }
}

.card-mv {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border-left: 4px solid #ef6c00;
  transition: transform 0.2s ease;
}
.card-mv:hover {
  transform: translateY(-3px);
}
.card-mv h2 {
  color: #d32f2f;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.card-mv p {
  color: #555;
  line-height: 1.6;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #212121;
  background-color: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background-color: #d32f2f;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: rgb(170.8571428571, 36.1428571429, 36.1428571429);
}
.btn--secondary {
  background-color: #2e7d32;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn--secondary:hover {
  background-color: rgb(59.7192982456, 162.2807017544, 64.9122807018);
}

.header {
  background-color: #ffffff;
  border-bottom: 4px solid #ef6c00;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  position: relative;
}
.header__logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: #d32f2f;
  letter-spacing: 1px;
}
.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}
@media (min-width: 768px) {
  .header__toggle {
    display: none;
  }
}
.header__toggle-line {
  width: 100%;
  height: 3px;
  background-color: #d32f2f;
  transition: all 0.3s ease;
  transform-origin: left center;
}
.header__toggle--active .header__toggle-line:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: -2px;
}
.header__toggle--active .header__toggle-line:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.header__toggle--active .header__toggle-line:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: 2px;
}

.header {
  background-color: #ffffff;
  border-bottom: 4px solid #ef6c00;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  position: relative;
}
.header__logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header__logo-img {
  display: block;
  height: 1.7em;
  width: auto;
}
.header__logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: #d32f2f;
  letter-spacing: 1px;
}
.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}
@media (min-width: 768px) {
  .header__toggle {
    display: none;
  }
}
.header__toggle-line {
  width: 100%;
  height: 3px;
  background-color: #d32f2f;
  transition: all 0.3s ease;
  transform-origin: left center;
}
.header__toggle--active .header__toggle-line:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: -2px;
}
.header__toggle--active .header__toggle-line:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.header__toggle--active .header__toggle-line:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: 2px;
}

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2rem;
}
.nav--active {
  display: block;
}
@media (min-width: 768px) {
  .nav {
    display: block;
    position: static;
    width: auto;
    padding: 0;
    box-shadow: none;
  }
}
.nav__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}
@media (min-width: 768px) {
  .nav__list {
    flex-direction: row;
  }
}
.nav__link {
  font-weight: 600;
  font-size: 1.1rem;
  color: rgb(71.25, 71.25, 71.25);
  transition: color 0.2s ease;
  display: block;
}
@media (min-width: 768px) {
  .nav__link {
    font-size: 0.95rem;
    display: inline;
  }
}
.nav__link:hover, .nav__link--active {
  color: #d32f2f;
}

.hero {
  background: linear-gradient(135deg, #d32f2f 0%, rgb(149.8095238095, 31.6904761905, 31.6904761905) 100%);
  color: #ffffff;
  text-align: center;
  padding: 4rem 2rem;
}
.hero__container {
  max-width: 800px;
  margin: 0 auto;
}
.hero__title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 4rem;
  }
}
.hero__slogan {
  font-size: 2rem;
  font-weight: bold;
  color: #a9dfbf;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero__subtitle {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.news-section {
  background-color: #f5f5f5;
  padding: 4rem 2rem;
}
.news-section__container {
  max-width: 1200px;
  margin: 0 auto;
}
.news-section__title {
  font-size: 1.8rem;
  color: #212121;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.news-section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #2e7d32;
}
.news-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .news-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #2e7d32;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.card__body {
  padding: 1.5rem;
}
.card__tag {
  display: inline-block;
  background-color: rgb(174.9561403509, 225.5438596491, 177.5175438596);
  color: #2e7d32;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.card__title {
  font-size: 1.25rem;
  color: #212121;
  margin-bottom: 0.75rem;
}
.card__excerpt {
  font-size: 0.95rem;
  color: #545454;
  margin-bottom: 1.5rem;
}
.card__date {
  display: block;
  font-size: 0.8rem;
  color: #878787;
  margin-bottom: 0.5rem;
}
.card__link {
  font-weight: bold;
  color: #d32f2f;
  font-size: 0.9rem;
}
.card__link:hover {
  color: rgb(149.8095238095, 31.6904761905, 31.6904761905);
}

.footer {
  background-color: #212121;
  color: #ffffff;
  text-align: center;
  padding: 2.5rem 2rem;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__text {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.footer__subtext {
  font-size: 0.85rem;
  color: #878787;
}

/*# sourceMappingURL=styles.css.map */
