@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

* ul li {
    list-style: none;
}

* a {
    text-decoration: none;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-size-adjust: 100%;
    font-family: var(--f-family);
}

body {
    background-color: var(--background);
    scroll-behavior: smooth;
    list-style: none;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100% !important;
    -ms-text-size-adjust: 100% !important;
}

/* TITLE */
.title {
    color: var(--title-color);
    font-size: var(title);
    padding: 50px;
    font-weight: 900;
    text-align: center;
}

.title:hover {
    color: var(--nav-hover);
}

@media (min-width: 768px) and (max-width: 991px) {
    .title {
        font-size: var(--title-medium);
    }

}

@media (max-width: 767px) {
    .title {
        font-size: var(--title-small);
    }
}
/*  END TITLE */

hr {
    color: var(--red);
    height: 2px;
    background: var(--white);
    opacity: 99%;
}

/* BUTTON CUSTOM */
.btn-primary-custom {
    background-color: var(--background);
    border-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: var(--background);
    animation: bounce 2s infinite;
}

.btn-primary-custom:hover {
    background-color: #01302b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--white);
}
/* END BUTTON CUSTOM */

/* BUTTON TO TOP */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    height: auto;
    z-index: 99;
    font-size: 15px;
    border: none;
    outline: none;
    background-color: var(--bg-section);
    color: var(--white);
    padding: 15px;
    border-radius: 5px;
    border: solid 1px var(--white);
}
/* END BUTTON TO TOP */

/* ANIMATIONS */
@keyframes bounce {

    0%,
    20%,
    60%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20%);
    }

    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10%);
    }
}
/* END ANIMATIONS */

/* ROOT */
:root {
    --background: #005E54;
    --bg-section: #130c04;
    --color: #d3d3d3;
    --nav-bg-color: #005E54;
    --nav-color: #e15e32;
    --navbar-color: #d3d3d3;
    --nav-hover: #90ee90;
    --white: #fffF;
    --font-size: 18px;
    --font-weight: 700;
    --font-weight-p: 300;
    --green: #005E54;
    --red: #fa0808;
    --f-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --bnt-f-weight: 900;
    --header-bg-color: #ffff;
    --banner-hover: #008000;
    --banner-f-family: 'lato', sans-serif;
    --banner-h1: 35px;
    --banner-h2: 25px;
    --about-icon: 34px;
    --footer-bg: #005e54;
    --title-color: #ffff;
    --title: 35px;
    --title-small: 25px;
    --title-medium: 25px;
    --subtitle: 18px;
    --subtitle-color: #1d242d;
}

/* ROOT SMALL */
:root {
    --font-small: 18px;
    --font-small-h1: 25px;
    --title-small: 20px;
    --subtitle-small: 25px;
    --color-small: var(--color);
    --font-small-h2: 15px;
}
/* END ROOT SMALL */

/* HERO SECTION */
.hero-section {
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1473093295043-cdd812d0e601?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    color: var(--background);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
    overflow: hidden;
    text-align: justify;
}

.hero-section h1 {
    font-weight: var(--font-weight);
    font-size: 55px;
}

.hero-section p {
    font-size: 20px;
    font-weight: var(--font-weight);
    background: var(--background);
    padding: 30px;
    color: var(--white);
    border-radius: 5px;
}

.hero-section img {
    border-radius: 5px;
}

.garantee {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
}

.guarantee-badge {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    border: solid 2px;
    display: inline-block;
    margin: 20px 0;
    font-weight: 600;
}

.guarantee-badge i {
    color: var(--primary-color);
}

@media (max-width: 767px) {

    .hero-section {
        height: auto;
        text-align: center;
    }

    .hero-section h1 {
        font-weight: var(--font-weight);
        font-size: 40px;
    }

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

    .garantee {
        justify-content: center;
    }

    .guarantee-badge {
        padding: 5px 10px;
        display: inline-block;
        font-size: 16px;
    }

    .btn-primary-custom {
        padding: 12px 30px;
        margin-bottom: 25px;
    }

}

@media (min-width: 768px) and (max-width: 991px) {

    .hero-section {
        height: auto;
        text-align: center;
    }

    .hero-section h1 {
        font-weight: var(--font-weight);
        font-size: 50px;
        margin-top: 25px;
    }

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

    .garantee {
        text-align: center;
        justify-content: center;
    }

    .guarantee-badge {
        padding: 5px 10px;
        display: inline-block;
        margin: 20px 0;
        font-weight: 600;
        font-size: 18px;
    }

    .btn-primary-custom {
        margin-bottom: 25px;
    }

}
/* END HERO SECTION */

/* ABOUT */
#about {
    height: auto;
    background: var(--bg-section);
    padding: 40px;
}

#about .subtitle {
    font-size: var(--subtitle);
    text-align: justify;
}

#about h2 {
    margin-block-start: 1.67em;
    margin-block-end: 1.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-size: 20px;
    font-weight: 700;
    line-height: 110%;
    margin: 1.09333rem 0px 0.656rem;
    background: var(--background);
    padding: 20px;
    border-radius: 5px;
}

#about p {
    text-align: justify;
    color: var(--white);
    font-weight: var(--font-weight-p);
}

#about .info {
    text-align: center;
}

.info img {
    height: 300px;
    border-radius: 5px;
    overflow: hidden;
}

span {
    font-size: 20px;
    font-weight: 900;
}

span:hover {
    font-size: 22px;
    transition: 0.5s;
}

@media(min-width: 768px) and (max-width: 991px) {
    #about {
        height: auto;
    }
}

@media(max-width: 767px) {
    #about {
        height: auto;
    }
}
/* END ABOUT */

/* HEALTH */
#health {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#health h5 {
    color: var(--white);
    font-weight: var(--font-weight);
}

#health img {
    border-radius: 5px;
    width: 100%;
    height: 300px;
}

.hover-effect {
    position: relative;
    overflow: hidden;
}

.hover-effect img {
    transition: transform 0.3s ease;
}

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

.hover-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 20px;
    font-size: 20px;
}

.hover-effect:hover .hover-text {
    opacity: 1;
}

@media(max-width: 767px) {
    #health {
        height: auto;
    }


}
/* END HEALTH */

/* BENEFITS SECTION */
.benefits-section {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background: var(--bg-section);
}

.benefits-section p {
    text-align: justify;
    font-size: 20px;
    color: var(--white);
    font-weight: var(--font-weight);
}

.benefits-section i {
    font-size: 18px;
}

.benefits-img {
    border-radius: 5px;
    width: 100%;
    height: auto;
    box-shadow: none;
    transition: box-shadow 0.3s ease;

}

.feature-list {
    list-style: none;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
}

.feature-list li {
    margin-bottom: 15px;
    position: relative;
    color: var(--white);
}

@media(max-width: 767px) {
    .benefits-section {
        height: auto;
    }
}

@media(min-width: 768px) and (max-width: 991px) {
    .benefits-section {
        height: auto;
    }
}
/* END BENEFITS */

/* COUNTER */
#counter-section {
    height: 80vh;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 50px;
    background: var(--background);
}

.counter-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: auto;
}

.counter-card {
    padding: 30px;
    border-radius: 5px;
    border: var(--color) solid 1px;
    border-right: 10px solid var(--background);
    /* border-top-left-radius: 50px; */
    border-bottom-right-radius: 50px;
    border-top-left-radius: 30px;
    box-shadow: 5px 2px lightgray;
    background: var(--white);
    /* opacity: 90%; */
}

.counter-section .container-fluid {
    padding: 50px;
}

.counter-section i {
    font-size: 30px;
    color: var(--color);
}

.counter {
    font-size: 3rem;
    font-weight: bold;
}

.counter-title {
    font-size: 1.5rem;
    margin-top: 10px;
    font-weight: bold;
}

@media (max-width: 767px) {

    #counter-section {
        height: auto;
    }

    .counter-box {
        flex-direction: column;
        height: auto;

    }

    .counter-card {
        margin: auto;
        width: 100%;
    }

    .counter-section i {
        font-size: 25px;
    }

    .counter {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .counter-title {
        font-size: 1.2rem;
        margin-top: 10px;
        font-weight: bold;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .banner h1 {
        margin-top: 50px;
    }

    #counter-section {
        height: auto;
    }

    .counter-box {

        height: auto;

    }

    .counter-card {
        margin: auto;
        width: 25%;
        height: 200px;
    }

    .counter-section i {
        font-size: 25px;
    }

    .counter {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .counter-title {
        font-size: 1.2rem;
        margin-top: 10px;
        font-weight: bold;
    }

}
/* END COUNTER */

/* DEPOIMENTS */
#depoiments {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background: var(--bg-section);
    text-align: center;
    padding: 40px;
}

.depoiments {
    border: solid 1px var(--white);
    height: 500px;
    padding: 20px;
    border-radius: 5px;
    background: var(--bg-section);
}

#depoiments img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 25px;
}

#depoiments p {
    color: var(--white);
}

.depoiments-box {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
}

#depoiments i {
    color: lightgreen;
}

#depoiments span {
    color: var(--white);
    font-size: 15px;
}

@media (max-width: 767px) {
    #depoiments {
        height: auto;
    }

    .depoiments-box {
        flex-direction: column;
    }
}

@media (min-width: 768px) and (max-width:1200px) {
    #depoiments {
        height: auto;
    }

    .depoiments-box {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .depoiments {
        height: auto;
        width: 100%;
    }
}
/* END DEPOIMENTS */

/* BANNER FULL */
.banner-full {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.banner-full img {
    width: 100%;
    overflow: hidden;
}

@media (max-width: 767px) {
    .banner-full {
        height: 40vh;
    }
}
/* END BANNER FULL */

/* PAYMENT */
#payment {
    background: var(--bg-section);
    height: auto;
}

.badge-section {
    padding: 20px;
    border-radius: 10px;
    margin: 30px 10px;
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.payment-section {
    padding: 20px 0;
}

.payment-methods img {
    height: 20px;
    margin: 0 10px 10px 0;
}

#banner-pay {
    height: auto;
    background: var(--bg-section);
}

#banner-pay .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 50px;
}

.btn-pay {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

@media (min-width: 767px) and (max-width: 991px) {
    #banner-pay .container {
        height: auto;
    }

    .pay-content {
        display: flex;
    }
}
/* END PAYMENT */

/* FOOTER */
footer {
    background: var(--footer-bg);
    height: 50;
}

footer img {
    height: 300px;
}

footer a,
h2,
i {
    color: var(--white);
}

footer ul li {
    color: var(--white);
}

@media (max-width:767px) {
    footer {
        text-align: center;
    }

    footer img {
        height: 600px;
        width: 100%;
    }
}

@media (min-width:768px) and (max-width: 992px) {
    footer {
        text-align: center;
    }

    footer img {
        height: 500px;
        width: 50%;
    }
}
/* END FOOTER */