/* HEADER */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: #0f0f0f; */
    background: linear-gradient(90deg, #080808 0%, #555252 100%);
    height: 9.6rem;
    padding: 0 4.8rem;
    position: relative;
}

.logo {
    height: 8.5rem;
    border-radius: 10px;
}

/* NAVIGATION */

.main-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.main-nav-link:link,
.main-nav-link:visited {
    display: inline-block;
    text-decoration: none;
    color: #fefdfd;
    /* color: #e29c0f; */
    font-weight: 700;
    font-size: 1.8rem;
    transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
    /* color: #e81e28; */
    color: #e29c0f;
    /* color: #fefdfd; */
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
    padding: 1.2rem 2.4rem;
    border-radius: 100px;
    color: #fff;
    /* background-color: #b4721b; */
    /* background: linear-gradient(135deg, #053d18 0%, #97d8a6 100%); */
    background: linear-gradient(135deg, #e81e28 0%, #bd8285 100%);
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
    color: #181410;
}

/* MOBILE NAV HAMBURGUER */

.btn-mobile-nav {
    border: none;
    background: none;
    cursor: pointer;
    display: none;
}

.icon-mobile-nav {
    height: 8rem;
    width: 8rem;
    color: #f4eeee;
}

.icon-mobile-nav[name='close-outline'] {
    display: none;
}

/* STICKY NAVIGATION */

.sticky .header {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 10rem;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 999 !important;
    box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
    margin-top: 9.6rem;
}

/* HERO SECTION */

.section-hero {
    background: linear-gradient(90deg, #080808 0%, #555252 100%);
    padding: 4.8rem 0 4.8rem 0;
    margin-top: -2px;
    height: 85rem;
    /* clip-path: polygon(0 0, 100% 0, 100% 70vh, 0 100%); */
}

.hero {
    max-width: 140rem;
    margin: 0 auto;
    padding: 0 3.2rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4.8rem;
    align-items: center;
}

.hero-description {
    color: #dfdada;
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 4.8rem;
}

.hero-img {
    width: 80%;
}

.country-hero {
    display: block;
}

.country-hero img {
    height: 4.8rem;
    width: 4.8rem;
    border-radius: 50%;
    margin-right: -1.6rem;
    border: 2px solid #fdf2e9;
}

.african-countries {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-top: 4rem;
}

.countries-imgs {
    display: flex;
}

.countries-imgs img {
    height: 4.8rem;
    width: 4.8rem;
    border-radius: 50%;
    margin-right: -1rem;
    border: 3px solid #fdf2e9;
}

.countries-imgs img:last-child {
    margin: 0;
}

.countries-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #dfdada;
}

.countries-text span {
    color: #cf711f;
    font-weight: 700;
}

.hero-slider img {
    border-radius: 50px !important;
    width: 100% !important;
}

/* NEWS SECTION */

.section-news {
    padding: 5rem 0 4.8rem 0;
    background: linear-gradient(135deg, #e81e28 0%, #bd8285 100%);
    margin-top: -20vh;
}

.news-data {
    font-size: 4.4rem;
    font-weight: 600;
    color: #ddd;
    margin-bottom: 1.2rem;
}

.news-description {
    font-size: 1.8rem;
    line-height: 1.8;
    /* color: white; */
}

.news-img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-img-box::before,
.news-img-box::after {
    content: '';
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.news-img {
    width: 100%;
    border-radius: 50px;
}

.news-video {
    height: auto;
    /* width: 53%; */
    border-radius: 50px; /* Define o raio da borda arredondada */
}

.container-specific {
    max-width: 65%;
    padding: 0 3rem 0 3rem;
    margin: 0 auto;
}

.specific-img {
    margin: 2.4rem 0 4.8rem 0;
    width: 100%;
    border-radius: 50px;
    align-items: center;
}

.specific-description {
    font-size: 2rem;
    line-height: 1.8;
    /* color: white; */
}

/* PROGRAMS SECTION */

.section-programs {
    padding: 1.8rem 0;
    /* background: linear-gradient(135deg, #07502f 0%, #9dddc0 100%); */
    background: linear-gradient(90deg, #080808 0%, #555252 100%);
}

.program {
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
    border-radius: 11px;
    overflow: hidden;
    transition: all 0.4s;
}

.program:hover {
    transform: translateY(-1.2rem);
    box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.program-content {
    padding: 2rem 4.8rem 1rem 4.8rem;
    background-color: #f3e0c5;
}

.program-tags {
    margin-bottom: 1.2rem;
    display: flex;
    gap: 0.4rem;
}

.tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #333;
    border-radius: 100px;
    font-weight: 600;
}

.tag--vegetarian {
    background-color: #51cf66;
}
.tag--vegan {
    background-color: #94d82d;
}
.tag--paleo {
    background-color: #ffd43b;
}

.program-title {
    font-size: 2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-attributes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.program-attribute {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.program-icon {
    height: 2.4rem;
    width: 2.4rem;
    color: #e67e22;
}

.program-img {
    width: 100%;
}

.all-btn {
    text-align: center;
    font-size: 1.8rem;
}

/* DONATE SECTION */

.section-donate {
    padding: 4.8rem 0;
    /* background: linear-gradient(135deg, #ac6f20 0%, #9c8f75 100%); */
    background: linear-gradient(135deg, hsl(36, 81%, 43%) 0%, #c4a271 100%);
}

.section-subpages-0 {
    padding: 13rem 0 4rem 0;
    background: linear-gradient(90deg, #d23038 0%, #bd8285 100%);
}

.section-subpages-1 {
    padding: 13rem 0 4rem 0;
    background: linear-gradient(135deg, hsl(36, 81%, 43%) 0%, #c4a271 100%);
}

.section-subpages-2 {
    padding: 13rem 0 4rem 0;
    background: linear-gradient(135deg, #23af70 0%, #b8dbcb 100%);
}

.section-subpages-3 {
    padding: 13rem 0 4rem 0;
    background: linear-gradient(135deg, #277c78 0%, #f3e0c5 100%);
}

.section-subpages-4 {
    padding: 13rem 0 4rem 0;
    background: linear-gradient(90deg, #d23038 0%, #bd8285 100%);
}

.donate-data {
    font-size: 4.4rem;
    font-weight: 600;
    color: #ddd;
    margin-bottom: 1.2rem;
}

.donate-description {
    font-size: 1.8rem;
    line-height: 1.8;
}

.donate-img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donate-img-box::before,
.donate-img-box::after {
    content: '';
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.donate-img {
    width: 100%;
    border-radius: 50px;
}

.donate-button {
    display: flex;
    align-items: center;
    gap: 10px;
}

.donate-flag {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-top: 4rem;
}

.donate-imgs {
    display: flex;
}

.donate-imgs img {
    height: 3.8rem;
    width: 4.8rem;
    border-radius: 15px;
    margin-right: 0.5rem;
    border: 1.5px solid #fdf2e9;
}

.donate-imgs img:last-child {
    margin: 0;
}

/* HISTORY SECTION */

.section-history {
    /* background-color: #23af70; */
    background: linear-gradient(90deg, #1d8b5a 0%, #b0cfc1 100%);
    display: grid;
    grid-template-columns: 55fr 45fr;
    align-items: center;
}

.history-container {
    padding: 9.6rem;
}

.history-description {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.history-img-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.history-img {
    width: 80%;
    border-radius: 50px;
    margin: 3.2rem 2rem;
}

.history-text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 1.6rem;
}

.history-name {
    font-size: 1.6rem;
    color: #6f6f6f;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    padding: 1.6rem;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    display: block;
    width: 100%;
    transition: all 0.4s;
}

.gallery-item img:hover {
    transform: scale(1.1);
}

/* CTA SECTION */

.section-cta {
    padding: 4.8rem 0 12.8rem;
}

.cta {
    display: grid;
    grid-template-columns: 2fr 1fr;
    box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
    border-radius: 11px;

    background-image: linear-gradient(to right bottom, #eb984e, #e67e22);
    overflow: hidden;
}

.cta-text-box {
    padding: 4.8rem 6.4rem 6.4rem 6.4rem;
    color: #45260a;
}

.cta .heading-secondary {
    /* color: #45260a; */
    color: inherit;
    margin-bottom: 3.2rem;
}

.cta-text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 4.8rem;
}

.cta-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3.2rem;
    row-gap: 2.4rem;
}

.cta-form label {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.8rem;
    font-family: inherit;
    color: inherit;
    border: none;
    background-color: #fdf2e9;
    border-radius: 9px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
    color: #aaa;
}

.cta *:focus {
    outline: none;
    box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

/* FOOTER */

.footer {
    padding: 6rem 0;
    border-top: 1px solid #eee;
    background-color: black;
    text-align: center;
}

.footer-logo {
    display: block;
    margin-bottom: 3.2rem;
}

.copyright {
    font-size: 2rem;
    line-height: 1.6;
    color: #767676;
    margin-top: auto;
    padding: 1.6rem 0;
}

.address {
    font-size: 2rem;
    line-height: 1.6;
    color: #767676;
    margin-top: auto;
    padding: 1.6rem 0;
}

.footer-link:link,
.footer-link:visited {
    font-size: 2rem;
    line-height: 1.6;
    color: #767676;
    margin-top: auto;
    padding: 1.6rem 0;
    transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
    color: #555;
}

.logo-footer {
    height: 10rem;
    border-radius: 10px;
}

.carousel-item img {
    border: none !important;
    outline: none !important;
}

#carouselExampleCaptions {
    margin-bottom: 4rem;
}

.carousel-item img {
    border-radius: 50px;
}

#section-form {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #04422e 0%, #62ce7d 100%);
    padding: 9.6rem 0 15.6rem 0;
    height: 60vh;
    clip-path: polygon(0 0, 100% 0, 100% 50vh, 0 100%);
}

.container-form {
    max-width: 100rem;
    width: 100%;
    padding: 2.5rem 3rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #62ce7d 0%, #04422e 100%);
}

.container-form .heading-form {
    font-size: 2.8rem;
    font-weight: 500;
    position: relative;
    text-align: center;
    padding: 0 0 2rem 0;
}

.container-form .heading-form::before {
    content: '';
    position: absolute;
    height: 3px;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(135deg, #04422e 0%, #62ce7d 100%);
}

.container-form form .card-details {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

form .card-details .card-box {
    width: calc(100% / 3 - 2rem);
    margin-bottom: 1.5rem;
}

.card-details .card-box .details {
    display: block;
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.message-details .message-box .details {
    display: block;
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.message-details .message-box input {
    height: 4.8rem;
    width: 100%;
    outline: none;
    border-radius: 15px;
    border: 1px solid #ccc;
    padding-left: 1.5rem;
    font-weight: 500;
    font-style: 2.6rem;
    border-block-width: 2px;
    transition: all 0.3s ease;
}

.card-details .card-box input {
    height: 4.5rem;
    width: 100%;
    outline: none;
    border-radius: 15px;
    border: 1px solid #ccc;
    padding-left: 1.5rem;
    font-weight: 500;
    font-style: 2.6rem;
    border-block-width: 2px;
    transition: all 0.3s ease;
}

.card-details .card-box input:focus,
.card-details .card-box input:valid {
    border-color: #092c04;
}

form .button {
    text-align: center;
}

form .button-form input {
    padding: 1rem 0;
    margin-top: 1rem;
    height: 100%;
    width: 30%;
    outline: none;
    color: #fff;
    border: none;
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: 15px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #022209 0%, #52bd6b 100%);
}

form .button-form2 input {
    padding: 1rem 0;
    margin-top: 1rem;
    height: 100%;
    width: 20%;
    outline: none;
    color: #fff;
    border: none;
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: 15px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #080909 0%, #0f0e0e 100%);
}

form .button-form input:hover {
    background: linear-gradient(135deg, #19ae39 0%, #52bd6b 100%);
}

form .button-form2 input:hover {
    background: linear-gradient(135deg, #19ae39 0%, #52bd6b 100%);
}

/* .form-group {
    margin: 2rem 0;
}

.form-group {
    font-size: 2rem;
    padding: 0rem;
}

.form-control {
    font-size: 2rem !important;
    width: 100%;
    border-radius: 50px !important;
    padding: 20px !important;
} */

.btn-primary {
    font-size: 2rem !important;
    padding: 10px 20px;
}

.btn-form {
    font-size: 2rem !important;
    padding: 10px 30px !important;
    border-radius: 50px !important;
    background-color: #0f0f0f !important;
}

.btn-form:hover {
    background-color: #767676 !important;
}

/**************************/
/* FOOTER */
/**************************/

.footer {
    padding: 12.8rem 0;
    border-top: 1px solid #eee;
    margin-top: -30vh;
    padding-top: 40rem;
    background: linear-gradient(90deg, #080808 0%, #555252 100%);
}

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

.logo-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-logo {
    display: block;
    margin-bottom: 3.2rem;
}

.social-links {
    list-style: none;
    display: flex;
    gap: 4.4rem;
}

.social-icon {
    height: 2.4rem;
    width: 2.4rem;
}

.copyright {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #c0b6b6;
    margin-top: auto;
}

.footer-heading {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 4rem;
    color: #c0b6b6;
}

.contacts {
    font-style: normal;
    font-size: 1.6rem;
    line-height: 1.6;
}

.address {
    margin-bottom: 2.4rem;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
    text-decoration: none;
    font-size: 1.6rem;
    color: #c0b6b6;
    transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
    color: #e29c0f;
    text-transform: uppercase;
}

/* By Yuri Sokolovicz */
