.hero-section {
    background: var(--primary-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

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

.hero-section p {
    color: var(--bg-color);
    font-size: var(--f-size);
    font-weight: var(--f-weight);
    text-align: var(--text-align);
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/7709089/pexels-photo-7709089.jpeg') no-repeat top / cover;
    opacity: 0.1;
    z-index: 0;
}

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

.o-que-e {
    color: var(--text-color);
    text-align: center;
}

.o-que-e i {
    color: var(--primary-color);
}

.benefit-item {
    transition: all 0.3s ease;
    color: var(--secondary-color);
}

.benefit-item:hover {
    background-color: rgba(30, 144, 255, 0.05);
    border-left: 3px solid var(--primary-color);
    transform: translateX(5px);
}

#tipos i {
    color: var(--primary-color);
}

#beneficios i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

#beneficios .card {
    border-bottom: solid 5px var(--primary-color);
    color: var(--secondary-color);
}

#tecnologias i {
    color: var(--primary-color);
}

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

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

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

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

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

.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);
}

.support-card {
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    height: 100%;
    background-color: var(--light-color);
}

.support-card:hover {
    background-color: var(--bg-color);
    transform: translateX(5px);
}

.contact-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--b-shadow);
    transition: all 0.3s ease;
    margin: 25px;
    border: solid 1px var(--primary-color);
}

.contact-card:hover {
    transform: scale(1.02);
    box-shadow: var(--b-shadow);
}

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

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

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

.modal-content {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.support-icon:hover {
    transform: scale(1.2);
}

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

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

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

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

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

    .card-body {
        font-size: var(--f-small);
    }

    #tecnologias {
        text-align: left;
    }

}

@media (max-width: 768px) {

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

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

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

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

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

    .card-body {
        font-size: var(--f-small);
    }

    #tecnologias {
        text-align: left;
    }

    .tech-badge {
        padding: 4px 7.5px;
    }

}