.hero-section {
    background: var(--gradient);
    color: var(--bg-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--b-shadow);
}

.hero-section h1 {
    font-size: var(--title);
    font-weight:var(--f-weight-2);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1611162617213-7d7a39e9b1d7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section .btn {
    background: transparent;
    border: solid 1px;
}

.hero-section .btn:hover {
    border: solid 1px;
}

.card-body,
.banner {
    background-color: var(--light-color);
}

.card-title {
    font-size: var(--title-small);
    font-weight: var(--f-weight-2);
}

.card-text {
    color: var(--text-color);
}

.card-body h4 {
    font-size: var(--title-small);
    font-weight: var(--f-weight-2);
}

.card-body:hover {
    background-color: var(--bg-color);
}

.card-hover {
    transition: all 0.3s ease;
    border: none;
    box-shadow: var(--b-shadow);
    border-radius: var(border-radius);
    overflow: hidden;
    height: 100%;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: var(--b-shadow);
}

.card-hover .card-img-top {
    transition: all 0.5s ease;
    height: 200px;
    object-fit: cover;
}

.card-hover:hover .card-img-top {
    transform: scale(1.05);
}

#plataformas .card {
    box-shadow: var(--b-shadow);
}

#plataformas i {
    color: var(--primary-color);
    margin-right: 15px;
}

#beneficios .card p {
    color: var(--text-color);
}

#beneficios .card i {
    font-size: var(--social-icon);
    color: var(--primary-color);
}

.benefit-item {
    transition: all 0.3s ease;
    border-left: 30px solid transparen;
    color: var(--text-color);
}

.benefit-item h5 {
    color: var(--secondary-color);
}

.benefit-item i {
    color: var(--primary-color);
}

.benefit-item:hover {
    background-color: var(--contrast-color);
    border-left: 3px solid var(--primary-color);
    transform: translateX(5px);
}

#tecnologias small {
    color: var(--text-color);
}

.tech-badge {
    color: var(--primary-color);
    padding: 8px 15px;
    border: 1px solid  var(--primary-color);
    border-radius: 50px;
    margin: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: scale(1.05);
}

.list-group-item i {
    color: var(--primary-color);
}

#contato .banner {
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--b-shadow);
    border: solid 1px var(--primary-color);
}

.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background-color: var(--primary-color);
}

footer i {
    font-size: var(--social-icon-small);
}

/* RESPONSIVITY */

@media (min-width: 769px) and (max-width: 992px) {
    .hero-section {
        text-align: center;
    }

    .hero-section .btn {
        margin-bottom: 10px;
        font-size: var(--f-small);
    }

    .card-body,
    .banner {
        background-color: var(--light-color);
        font-size: var(--f-small);
    }

    #tecnologias {
        text-align: center;
    }
}

@media (max-width: 768px) {
    * i {
        font-size: var(--social-icon);
    }

    .hero-section {
        text-align: center;
        font-size: var(--f-small);
    }

    .hero-section .btn {
        margin-bottom: 10px;
        font-size: var(--f-small);
    }

    .card-body,
    .banner {
        background-color: var(--light-color);
        font-size: var(--f-small);
    }

    #tecnologias {
        text-align: center;
        font-size: var(--f-small);
    }

    .tech-badge {
        padding: 4px 7.5px;
        font-size: var(--font-small);
    }
}
