@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap");

:root {
  --green-1: #17a39e;
  --green-2: #95c026;
  --green-3: #17a39e;
  --gray: #f2f2f2;
  --black: #000;
  --lightBlue: #abdbf2;
  --white: #fff;
}

/* Fonts */
.roboto-regular {
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.roboto-bold {
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.roboto-black {
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* General */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", serif;
  font-weight: 400;
}

.green-1 {
  background-color: var(--green-1);
}

.green-2 {
  background-color: var(--green-2);
}

.text-white {
  color: var(--white);
}

.f-20 {
  font-size: 18px;
}

.f-25 {
  font-size: 23px;
}

.f-30 {
  font-size: 37px;
}

.f-40 {
  font-size: 36px;
}

.f-50 {
  font-size: 45px;
}

/* Navbar */
.navbar-brand img {
  width: 50%;
  height: auto;
}

.btn-primary {
  background-color: var(--green-3);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-outline-primary {
  padding: 20px 30px;
  border-radius: 0;
}

.btn-doacao {
  width: 350px;
  color: var(--black);
  font-weight: bold;
  border-radius: 0;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #17a39e;
  --bs-btn-border-color: #17a39e;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #148e8a;
  --bs-btn-hover-border-color: #127e7b;
  --bs-btn-focus-shadow-rgb: 23, 163, 158;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #127e7b;
  --bs-btn-active-border-color: #10706e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #17a39e;
  --bs-btn-disabled-border-color: #17a39e;
}

.btn-outline-primary {
  --bs-btn-color: #17a39e;
  --bs-btn-border-color: #17a39e;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #17a39e;
  --bs-btn-hover-border-color: #17a39e;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #17a39e;
  --bs-btn-active-border-color: #17a39e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #17a39e;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #17a39e;
  --bs-gradient: none;
}

/* Header */
.bg-image {
  background: url("../images/header1.png") no-repeat center center;
  background-size: cover;
  height: 90vh;
}
.center-box {
  background-color: var(--green-2);
  color: white;
  padding: 40px;
  border-radius: 0;
  width: 916px;
  height: 210px;
}

/* Section 1 */
.section-1 {
  padding: 5rem 0 1rem 0;
}

.section-1 .quote {
  padding: 20px;
  position: relative;
}

.quote::before {
  content: "";
  background: url("../images/open.png") no-repeat center;
  width: 30px;
  height: 30px;
  position: absolute;
  left: -10px;
  top: 15px;
}

.quote::after {
  content: "";
  background: url("../images/close.png") no-repeat center;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 38%;
  bottom: 20px;
}

.light-blue {
  border-color: var(--lightBlue) !important;
}

/* Carousel */
.carousel-control-prev {
  left: -15%;
}

.carousel-control-next {
  right: -15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  background-size: contain;
  width: 150px;
  height: 150px;
}

.carousel-control-prev-icon {
  background-image: url("../images/left-arrow.png");
  background-repeat: no-repeat;
}

.carousel-control-next-icon {
  background-image: url("../images/right-arrow.png");
  background-repeat: no-repeat;
}

p.carousel-text {
  font-size: 1.3rem;
  color: var(--black);
}

/* Motivos */
.numbers {
  list-style-type: decimal;
  padding-left: 5%;
}

.numbers li {
  line-height: 2.5;
}

.numbers li::marker {
  font-family: "Roboto", serif;
  font-size: 45px;
  font-weight: 700;
}

/* Impacto */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
}

input[type="range"]:focus {
  outline: none;
}

/* Webkit (Chrome, Safari, Edge) */
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  background: black;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid black;
  margin-top: -20px;
  cursor: pointer;
}

/* Firefox */
input[type="range"]::-moz-range-track {
  width: 100%;
  height: 1px;
  background: black;
}

input[type="range"]::-moz-range-thumb {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid black;
  cursor: pointer;
}

/* IE */
input[type="range"]::-ms-track {
  width: 100%;
  height: 1px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type="range"]::-ms-fill-lower {
  background: black;
}
input[type="range"]::-ms-fill-upper {
  background: black;
}
input[type="range"]::-ms-thumb {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid black;
  cursor: pointer;
}

/* Form */
.btn-submit {
  width: 447px;
  height: 94px;
}
input[type="number"] {
  border: none;
}

.form-control {
  border: none;
  border-bottom: 1px solid black;
  border-radius: 0;
}

.input-group-text {
  background-color: transparent;
  border: none;
  border-radius: 0;
}

.list-unstyled {
  list-style-type: none;
}

.input-wrapper {
  position: relative;
  display: inline-block;
}

.input-wrapper input[type="number"] {
  padding-right: 2.5rem;
  -moz-appearance: textfield;
}

.input-wrapper input[type="number"]::-webkit-inner-spin-button,
.input-wrapper input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-arrow {
  position: absolute;
  right: 0.5rem;
  width: 1.5rem;
  height: 50%;
  background-color: transparent;
  border: none;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
}

.btn-up {
  top: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16'><polygon points='8,0 16,16 0,16' fill='%2317A39E'/></svg>");
}

.btn-down {
  bottom: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16'><polygon points='0,0 16,0 8,16' fill='%2317A39E'/></svg>");
}

.img-fluid-player {
  max-width: 100%;
  height: auto;
}

/* Footer */
footer {
  background-color: var(--gray);
  color: var(--black);
  padding: 5rem 10rem 2rem 10rem;
  height: auto;
}

footer i {
  color: var(--green-2);
}

footer a {
  color: var(--black);
  text-decoration: none;
}

.fa-size {
  font-size: 8em;
}

@media (max-width: 1440px) {
  /* Carousel */
  .carousel-control-prev {
    left: -5%;
  }

  .carousel-control-next {
    right: -5%;
  }
}
@media (max-width: 1024px) {
  .f-50 {
    font-size: 36px;
  }

  .btn-submit {
    width: 350px;
    height: 90px;
  }

  /* Footer */
  footer {
    padding: 5rem 3rem 2rem 3rem;
  }

  .img-fluid {
    max-width: 80%;
    height: auto;
  }

  .fa-size {
    font-size: 6em;
  }

  footer .f-20 {
    font-size: 13.5px;
  }
}
@media (max-width: 768px) {
  .f-30 {
    font-size: 22.5px;
  }

  .f-50 {
    font-size: 27px;
  }

  .bg-image {
    height: 50vh;
  }

  .center-box {
    width: 600px;
    height: 140px;
  }

  .quote::after {
    right: 70%;
  }

  p.carousel-text {
    font-size: 1rem;
    color: var(--black);
  }

  .btn-submit {
    width: 300px;
    height: 70px;
  }
}
@media (max-width: 480px) {
  .f-20 {
    font-size: 14.4px;
  }

  .f-25 {
    font-size: 16px;
  }

  .f-50 {
    font-size: 18px;
  }

  .numbers li::marker {
    font-family: "Roboto", serif;
    font-size: 40px;
    font-weight: 700;
  }

  .numbers li {
    line-height: 2;
  }

  .center-box {
    width: 450px;
    height: 120px;
  }

  .quote::after {
    right: 30%;
  }

  .btn-outline-primary {
    padding: 10px 20px;
    border-radius: 0;
  }
}
@media (max-width: 430px) {
}
