:root {
    --primary: #1b3e41;
    --secondary: #3a9da7;
    --orange: #e26810;
}

body {
    background-color: #eceeee;
}

h1, h2, h3 {
    color: var(--primary);
    font-weight: bold;
}

h1, h2, h3, h4, h5, p, span {
    margin: 0;
}

.btn-whatsapp {
    background-color: var(--primary);
    color: white;
    transition: 0.5s;
    border: none;

    &:hover {
        transform: scale(1.05);
        color: white;
        background-color: var(--orange);
    }
}

.btn-cta {
    background-color: var(--orange);
    transition: 0.5s;

    &:hover {
        background-color: var(--primary);
        transform: scale(1.05);
    }
}

.card-custom {
    border: none;

    * {
        transition: 0.5s;
    }

    .card-title {
        color: white;
        background-color: var(--orange);
    }

    .img-wrapper {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    li {
        transition: 0.5s;
        border-bottom: 1px solid transparent;

        &:hover {
            span {
                font-size: x-large;
            }
        }
    }

    &:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

        .card-title {
            background-color: var(--primary);
            transform: scale(1.05);
        }

        img {
            transform: scale(1.1);
        }

        li {
            border-bottom: 1px solid var(--primary);
        }
    }
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}

footer {
    background-color: var(--primary);
    color: white;
}

.footer-heading {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.text-orange {
    color: var(--orange);
}

.bg-orange {
    background-color: var(--orange);
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-brand img {
    object-fit: contain;
    width: 100%;
    max-width: 200px;
}

@media screen and (max-width: 768px) {
    .navbar-brand img {
        max-width: 100px;
    }
}

.nav-link {
    p {
        color: var(--primary);
    }

    &.active {
        p {
            color: var(--orange);
        }
    }
}