.hero-section {
    background: var(--linear-gradient);
    color: var(--bg-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    height: 70vh;
}

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

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

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

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

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

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

.card-hover {
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.card-hover .card-img-top {
    transition: all 0.5s ease;
}

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

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

#o-que-e h5 {
    color: var(--secondary-color);
}

.seo-type-card {
    background-color: var(--light-color);
    border: solid 1px var(--contrast-color);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: var(--b-shadow);
    text-align: var(--text-center);
}

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

.seo-type-card i {
    color: var(--primary-color);
}

.seo-type-card h4 {
    color: var(--secondary-color);
    font-weight: var(--f-weight-2);
}

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

.contato .contato-banner {
    color: var(--secondary-color);
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--b-shadow);
    transition: all 0.3s ease;
    border: solid 2px var(--primary-color);
}

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

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

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

.list-group h6 {
    color: var(--secondary-color);
    font-weight: var(--f-weight);
}

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

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

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

/* RESPONSIVITY */

@media (min-width: 768px) and (max-width: 992px) {
    /* .hero-section {
        height: auto;
        text-align: center;
        font-size: var(--f-medium);
    }

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

    #o-que-e .card {
        font-size: var(--f-small);
    }

    #tipos {
        font-size: var(--f-small);
    }

    #tipos .btn {
        font-size: var(--f-small);
    }

    .seo-type-card h4 {
        font-size: var(--f-medium);
    }

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

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

    .contato .title h2 {
        font-size: var(--f-medium);
        font-weight: var(--f-weight-2);
    }

    .contato .btn {
        font-size: var(--f-small);
    }

    .feature-icon {
        font-size: var(--f-medium);
    } */

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

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

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

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

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

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

    #o-que-e {
        font-size: var(--f-small);
    }

    #o-que-e .card {
        font-size: var(--f-small);
    }

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

    #tipos {
        font-size: var(--f-small);
    }

    #tipos .btn {
        font-size: var(--f-small);
    }

    .seo-type-card h4 {
        font-size: 20px;
    }

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

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

    .contato .btn {
        font-size: var(--f-small);
    }

    .feature-icon {
        font-size: var(--f-medium);
        color: var(--primary-color);
        margin-bottom: 1rem;
    }
}

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

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

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

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

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

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

    #o-que-e {
        font-size: var(--f-small);
    }

    #o-que-e .card {
        font-size: var(--f-small);
    }

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

    #tipos {
        font-size: var(--f-small);
    }

    #tipos .btn {
        font-size: var(--f-small);
    }

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

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

    .contato .btn {
        font-size: var(--f-small);
    }

    .feature-icon {
        font-size: var(--f-medium);
        color: var(--primary-color);
        margin-bottom: 1rem;
    }
}