:root {
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
    background-color: #f2f6f9 !important;
    color: #000000 !important;
  }
}
/*START BASIC RESET */
* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans", sans-serif;
  background-color: #f2f6f9;
  color: #000000;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

ol,
ul {
  list-style: none;
  padding-inline-start: 0;
  margin-block: 0;
}

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

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

/*END BASIC RESET */
.grid-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 1rem;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0rem;
  margin-bottom: 0rem;
}
.grid-container:not(.no-padding) {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .grid-container:not(.no-padding) {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 1rem;
  }
}
.grid-container .full-width {
  grid-column: 1/-1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* HEADER STYLES */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  max-height: 70px;
  background-color: #283646;
  padding-block: 0.875rem;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.header__quick-exit {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 400;
  padding: 0.375rem 1rem;
  background-color: #ff0207;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .header__quick-exit {
    display: none;
  }
}
.header__quick-exit:hover, .header__quick-exit:focus {
  background-color: rgb(206, 0, 4.0711462451);
}
.header__logo {
  display: flex;
  max-width: 2.625rem;
  width: 100%;
}
.header__logo a {
  display: inline-flex;
}
.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 35px;
  height: 35px;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .header__menu-toggle {
    display: block;
    position: relative;
    z-index: 20;
  }
}
.header__menu-toggle .header__menu-icon {
  display: block;
  width: 25px;
  height: 2.5px;
  background-color: #ffffff;
  position: relative;
  border-radius: 4px;
  transition: background-color 0.3s ease-in-out;
}
.header__menu-toggle .header__menu-icon::before, .header__menu-toggle .header__menu-icon::after {
  content: "";
  display: block;
  width: 25px;
  height: 2.5px;
  background-color: #ffffff;
  position: absolute;
  border-radius: 4px;
  transition: background-color 0.3s ease-in-out;
}
.header__menu-toggle .header__menu-icon::before {
  top: -8px;
}
.header__menu-toggle .header__menu-icon::after {
  top: 8px;
}
.header__menu-toggle.is-active .header__menu-icon {
  background-color: transparent;
}
.header__menu-toggle.is-active .header__menu-icon::before {
  transform: rotate(45deg);
  top: 0;
  background-color: #ffffff;
}
.header__menu-toggle.is-active .header__menu-icon::after {
  transform: rotate(-45deg);
  top: 0;
  background-color: #ffffff;
}
.header__nav-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .header__nav-list {
    flex-direction: row;
    gap: 3rem;
  }
}
.header__nav-list .header__nav-link {
  color: #ffffff;
  font-size: 2rem;
  line-height: 2.75rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .header__nav-list .header__nav-link {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
.header__nav-list .header__nav-link:not(.leave), .header__nav-list .header__nav-link:visited:not(.leave) {
  transition: color 0.3s ease-in-out;
}
.header__nav-list .header__nav-link:not(.leave):hover, .header__nav-list .header__nav-link:not(.leave):focus, .header__nav-list .header__nav-link:visited:not(.leave):hover, .header__nav-list .header__nav-link:visited:not(.leave):focus {
  color: rgb(255, 129.5, 131.9802371542);
}
.header__nav-list .header__nav-link.leave, .header__nav-list .header__nav-link:visited.leave {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.375rem 1rem;
  background-color: #ff0207;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease-in-out;
}
.header__nav-list .header__nav-link.leave:hover, .header__nav-list .header__nav-link.leave:focus, .header__nav-list .header__nav-link:visited.leave:hover, .header__nav-list .header__nav-link:visited.leave:focus {
  cursor: pointer;
  background-color: rgb(206, 0, 4.0711462451);
}
@media screen and (max-width: 768px) {
  .header__nav-list .header__nav-link img {
    width: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #283646;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease-in-out;
    z-index: 10;
  }
}
.header__nav.is-active {
  left: 0;
}

/* END HEADER STYLES */
/* MAIN STYLES */
.main {
  flex: 1 0 auto;
  padding-top: 70px;
}

.hero-image__container {
  padding-block: 40px 56px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .hero-image__container {
    padding-block: 64px 88px;
  }
}
.hero-image__container .part__one, .hero-image__container .part__two, .hero-image__container .part__three {
  grid-column: 2/6;
}
@media screen and (min-width: 768px) {
  .hero-image__container .part__one {
    grid-column: 3/6;
  }
}
.hero-image__container .part__two {
  display: flex;
  align-items: center;
  min-height: 2rem;
  padding-block: 1.5rem;
}
@media screen and (min-width: 768px) {
  .hero-image__container .part__two {
    grid-column: 6/8;
    position: relative;
  }
}
.hero-image__container .part__two .divider {
  width: 100%;
  height: 6px;
  background-color: #000000;
  transform: rotate(-3deg);
}
@media screen and (min-width: 768px) {
  .hero-image__container .part__two .divider {
    width: 140%;
    height: 4px;
    transform: rotate(-86deg);
    position: absolute;
    right: -25%;
  }
}
@media screen and (min-width: 768px) {
  .hero-image__container .part__three {
    grid-column: 8/11;
  }
}

@media screen and (min-width: 768px) {
  .main-section__container {
    align-items: center;
  }
}
.main-section__text-content {
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .main-section__text-content {
    grid-column: 1/8;
    grid-row: 1;
  }
}
.main-section__text-content p {
  margin-block: 0 1.5rem;
}
.main-section__quote {
  margin-inline: 0;
  margin-block: 0 1.5rem;
  font-weight: 700;
}
.main-section__figure {
  grid-column: 2/6;
  padding-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .main-section__figure {
    grid-column: 8/13;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .main-section__figure {
    grid-column: 9/12;
  }
}
.main-section__figure img {
  width: 100%;
}

.formas-violencia__container {
  padding: 1.5rem;
  margin-block: 56px;
  box-shadow: 2px 10px 30px 0 rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  grid-column: 1/-1;
  background-color: #ffffff;
  transition: transform 200ms ease-in-out;
}
.formas-violencia__container:hover {
  transform: scale(1.02);
}
@media screen and (min-width: 768px) {
  .formas-violencia__container {
    grid-column: 2/-2;
    margin-block: 88px;
  }
}
@media screen and (min-width: 1024px) {
  .formas-violencia__container {
    grid-column: 3/-3;
  }
}
@media screen and (min-width: 768px) {
  .formas-violencia__container.grid-container {
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.formas-violencia__text-content {
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .formas-violencia__text-content {
    grid-column: span 5;
  }
}
.formas-violencia__text-content h2,
.formas-violencia__text-content p {
  margin-block: 0 1rem;
}
.formas-violencia__figure {
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .formas-violencia__figure {
    grid-row: span 2;
    grid-column: 6/10;
  }
}
@media screen and (min-width: 1024px) {
  .formas-violencia__figure {
    grid-column: 7/10;
  }
}
.formas-violencia__figure img {
  width: 100%;
}
.formas-violencia__call-to-action {
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .formas-violencia__call-to-action {
    grid-column: span 3;
    align-self: end;
  }
}
.formas-violencia__call-to-action a {
  display: block;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  color: #ffffff;
  background-color: #0cc4b6;
  transition: background-color 0.3s ease-in-out;
}
.formas-violencia__call-to-action a:hover, .formas-violencia__call-to-action a:focus {
  background-color: rgb(10.5288461538, 171.9711538462, 159.6875);
}

.legal-framework__content {
  padding: 1.5rem;
  box-shadow: 2px 10px 30px 0 rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  border-radius: 1rem;
  grid-column: 2/6;
}
@media screen and (min-width: 768px) {
  .legal-framework__content {
    grid-column: 5/9;
  }
}
.legal-framework__content h2,
.legal-framework__content a {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}
.legal-framework__content h2,
.legal-framework__content p {
  margin-block: 0 1rem;
}
.legal-framework__content a {
  color: #7eb1f8;
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}
.legal-framework__content a:hover, .legal-framework__content a:focus {
  color: rgb(12.6875, 105.125, 233.8125);
}

.forms-violence {
  padding-block: 56px;
}
@media screen and (min-width: 768px) {
  .forms-violence {
    padding-block: 88px;
  }
}
.forms-violence__title {
  grid-column: span 6;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .forms-violence__title {
    grid-column: 3/11;
  }
}
.forms-violence__title h2 {
  display: inline-block;
  position: relative;
  margin-block: 0 20px;
  font-size: 30px;
}
.forms-violence__title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1.5px;
  background-color: black;
  transform: rotate(1.5deg);
  transform-origin: left center;
}
.forms-violence__item {
  padding: 1.5rem;
  box-shadow: 2px 10px 30px 0 rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  grid-column: span 6;
  width: 100%;
  background-color: #ffffff;
  grid-template-columns: 80px repeat(5, 1fr);
  transition: transform 200ms ease-in-out;
}
.forms-violence__item:hover {
  transform: scale(1.02);
}
@media screen and (min-width: 768px) {
  .forms-violence__item {
    grid-template-columns: 80px repeat(11, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .forms-violence__item {
    grid-column: span 4;
  }
}
@media screen and (min-width: 1224px) {
  .forms-violence__item {
    grid-column: span 3;
  }
}
.forms-violence__figure {
  grid-column: span 1;
}
.forms-violence__figure img {
  border-radius: 0.5rem;
}
.forms-violence__content {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .forms-violence__content {
    grid-column: span 11;
  }
}
.forms-violence__subtitle {
  margin-block: 0 1rem;
  position: relative;
}
.forms-violence__subtitle.clap-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.forms-violence__subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1.5px;
  background-color: black;
  transform: rotate(1deg);
  transform-origin: left center;
}
.forms-violence__button {
  display: flex;
  justify-content: flex-end;
}
.forms-violence__button a {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #7eb1f8;
  transition: color 0.3s ease-in-out;
}
.forms-violence__button a:hover, .forms-violence__button a:focus {
  color: rgb(12.6875, 105.125, 233.8125);
}

.contact {
  padding-bottom: 56px;
}
.contact__form, .contact__image {
  grid-column: 2/6;
}
.contact__form {
  padding-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .contact__form {
    grid-column: 7/12;
    grid-row: 1;
    align-self: center;
  }
}
.contact__form h2 {
  font-size: 18px;
  line-height: 1.4;
  margin-block: 0 0.5rem;
  font-weight: 500;
}
.contact__form h3 {
  font-size: 1rem;
  line-height: 1.2;
  margin-block: 0 1.5rem;
  font-weight: 400;
}
.contact__form .form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contact__form .form-group__form-label {
  font-size: 1rem;
  line-height: 22px;
  font-weight: 500;
  color: #000000;
}
.contact__form .form-group__form-input, .contact__form .form-group__form-textarea {
  font-family: "Noto Sans", serif;
  font-size: 1rem;
  line-height: 22px;
  font-weight: 400;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: #000000;
  background-color: #ffffff;
  outline: none;
  border: 1px solid #d7d7d7;
}
.contact__form .form-group__form-input::placeholder, .contact__form .form-group__form-textarea::placeholder {
  color: #a2a2a2;
}
.contact__form .form-group__form-textarea {
  resize: none;
}
.contact__form .form__button {
  display: block;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  font-size: 1rem;
  line-height: 1.4;
  color: #ffffff;
  background-color: #0cc4b6;
  transition: background-color 0.3s ease-in-out;
  outline: none;
  border: none;
}
.contact__form .form__button:hover, .contact__form .form__button:focus {
  cursor: pointer;
  background-color: rgb(10.5288461538, 171.9711538462, 159.6875);
}
.contact__form .success-message {
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 2rem;
  animation: fadeIn 0.5s ease-in-out;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.contact__form .success-message__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 1rem;
}
.contact__form .success-message__text {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 0.5rem;
}
.contact__form .success-message__thanks {
  font-size: 1rem;
  color: #000;
  margin-bottom: 2rem;
  font-weight: 600;
}
.contact__form .success-message__link {
  display: inline-flex;
  gap: 0.3125rem;
  align-items: center;
  color: #7eb1f8;
  font-weight: 600;
  text-decoration: none;
}
.contact__form .success-message__link:hover {
  text-decoration: underline;
}
.contact__form .error-text {
  color: #e74c3c;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .contact__image {
    grid-column: 3/6;
    grid-row: 1;
  }
}

#form-container {
  transition: opacity 0.3s ease-in-out;
}

/* END MAIN STYLES */
/* START DIALOG (MODAL) STYLES - CORREGIDO */
.violence-dialog {
  max-width: 900px;
  width: 90%;
  border: none;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 0;
  margin: auto;
  max-height: 90vh;
}
.violence-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
}
.violence-dialog__content {
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 1.5rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .violence-dialog__content {
    grid-template-columns: 4fr 6fr;
    padding: 2.5rem;
    align-items: center;
    overflow-y: visible;
  }
}
.violence-dialog__close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #333;
  transition: color 0.2s;
  z-index: 100;
}
.violence-dialog__close-btn:hover, .violence-dialog__close-btn:focus {
  color: #000;
}
.violence-dialog__image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.violence-dialog__image-container .violence-dialog__image {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .violence-dialog__image-container .violence-dialog__image {
    max-width: 100%;
  }
}
.violence-dialog__text-container {
  display: flex;
  flex-direction: column;
}
.violence-dialog__title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #283646;
}
@media screen and (min-width: 768px) {
  .violence-dialog__title {
    font-size: 1.75rem;
  }
}
.violence-dialog__description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.violence-dialog__testimony-box {
  border: 1px solid #eee;
  border-radius: 0.5rem;
  background-color: #fcfcfc;
  overflow: hidden;
}
.violence-dialog__testimony-box .testimony-box__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
  gap: 10px;
}
.violence-dialog__testimony-box .testimony-box__header .testimony-box__title {
  font-weight: 600;
  font-size: 0.9rem;
  color: #283646;
}
.violence-dialog__play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #0cc4b6;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}
.violence-dialog__play-btn:hover, .violence-dialog__play-btn:focus {
  background-color: rgb(10.5288461538, 171.9711538462, 159.6875);
}
.violence-dialog__play-btn img {
  width: 16px;
  height: 16px;
}
.violence-dialog__captions {
  background-color: #fff;
  padding: 1rem 1rem;
  line-height: 1.4;
  min-height: 80px;
  color: #283646;
  font-weight: 500;
  font-size: 0.9rem;
}
.violence-dialog__captions p {
  color: #777;
  font-style: italic;
  margin: 0;
}
.violence-dialog__audio {
  display: none;
}

/* END DIALOG (MODAL) STYLES */
/* FOOTER STYLES */
.footer {
  color: #ffffff;
  background-color: #283646;
  padding-block: 2.5rem;
}
.footer__section {
  grid-column: span 6;
}
@media screen and (min-width: 768px) {
  .footer__section--emergency {
    grid-column: 1/4;
  }
}
.footer__section--emergency p:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .footer__section--national {
    grid-column: 5/8;
  }
}
@media screen and (min-width: 768px) {
  .footer__section--imd {
    grid-column: 9/13;
  }
}
.footer__section h2,
.footer__section h3 {
  font-size: 18px;
  line-height: 25px;
  margin-block: 0 0.5rem;
}
.footer__section address {
  font-style: normal;
}
.footer__section p {
  font-size: 14px;
  line-height: 20px;
  margin-block: 0 1rem;
}
.footer__section p .phone {
  font-size: 1.5rem;
}
.footer__section p .mobile {
  display: block;
}
.footer__section p .full-address {
  display: block;
}
.footer__section ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block: 0.5rem 1rem;
}
.footer__section .footer__link {
  color: #7eb1f8;
  text-decoration: underline;
}
.footer__divider {
  grid-column: span 6;
  padding-top: 2rem;
  border-top: 1px solid #71777d;
}
@media screen and (min-width: 768px) {
  .footer__divider {
    grid-column: 1/-1;
  }
}
.footer__logos {
  grid-column: span 6;
  grid-gap: 18px 24px;
  align-items: center;
}
.footer__logos--education, .footer__logos--development, .footer__logos--cng, .footer__logos--gender {
  grid-column: span 3;
}
@media screen and (min-width: 768px) {
  .footer__logos {
    grid-column: 2/12;
  }
}
@media screen and (min-width: 1024px) {
  .footer__logos {
    grid-column-gap: 4rem;
  }
}

/* END FOOTER STYLES */
