:root {
    --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-secondary: "Inter", sans-serif;
}

:root {
    --color-default: #232921;
    --branco: #e3e3e3;
    --color-primary: #2e3a1b;
    --color-secondary: #383f37;
}

:root {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-default);
    color: var(--color-default);
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    color: #276e28;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
}

section {
    overflow: hidden;
    padding: 20px 0;
}

.section-bg {
    background-color: var(--branco);
}

.section-header {
    text-align: center;
    padding-bottom: 30px;
}

.section-header h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: #7f7f90;
    text-transform: uppercase;
    font-family: var(--font-default);
}

.section-header p {
    margin: 0;
    font-size: 48px;
    font-weight: 400;
    font-family: var(--font-primary);
}

.section-header p span {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .sectio-header h2 {
        font-size: 9px;
        letter-spacing: 1px;
        font-weight: 400;
        margin: 0;
        padding: 0;
        color: #7f7f90;
        text-transform: uppercase;
        font-family: var(--font-default);
    }
    .section-header p {
        margin: 0;
        font-size: 32px;
        font-weight: 400;
        font-family: var(--font-primary);
    }
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--color-primary);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.scroll-top:hover {
    background: #276e28;
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    transition: all 0.7s ease-out;
    width: 100%;
    height: 100vh;
}

#preloader:before,
#preloader:after {
    content: "";
    position: absolute;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
    animation-delay: -0.5s;
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }
    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    height: 90px;
    border-bottom: 1px solid #fff;
}

@media (max-width: 575px) {
    .header {
        height: 70px;
    }
}

.header .logo img {
    max-height: 250px;
    margin-right: 0px;
}

.header .logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0;
    font-family: var(--font-secondary);
}

.header .logo h1 span {
    color: var(--color-primary);
}

.header.sticked {
    border-color: #fff;
    border-color: #eee;
}

.header .btn-cta,
.header .btn-cta:focus {
    font-size: 12px;
    color: #fff;
    background: var(--color-primary);
    padding: 8px 15px;
    margin-left: 20px;
    border-radius: 50px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .header .btn-cta {
        position: absolute;
        left: -9999px;
        opacity: 0;
    }
}

.header .btn-cta:hover,
.header .btn-cta:focus:hover {
    color: #fff;
    background: #276e28;
}

section {
    scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/

@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }
    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navbar li {
        position: relative;
    }
    .navbar>ul>li {
        white-space: nowrap;
        padding: 10px 0 10px 28px;
    }
    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-family: var(--font-secondary);
        font-size: 16px;
        font-weight: 600;
        color: #7f7f90;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }
    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }
    .navbar>ul>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--color-primary);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }
    .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before {
        visibility: visible;
        width: 100%;
    }
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #000;
    }
    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 28px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }
    .navbar .dropdown ul li {
        min-width: 200px;
    }
    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        font-weight: 600;
    }
    .navbar .dropdown ul a i {
        font-size: 12px;
    }
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover>a {
        color: var(--color-primary);
    }
    .navbar .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }
    .navbar .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {
    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/

@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        border-left: 1px solid #666;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }
    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: rgba(255, 255, 255, 0.9);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }
    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-family: var(--font-secondary);
        border-bottom: 2px solid rgba(255, 255, 255, 0.8);
        font-size: 16px;
        font-weight: 600;
        color: #7f7f90;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }
    .navbar a:hover,
    .navbar li:hover>a {
        color: #000;
    }
    .navbar .active,
    .navbar .active:focus {
        color: #000;
        border-color: var(--color-primary);
    }
    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: all 0.5s ease-in-out;
        border: 1px solid #eee;
    }
    .navbar .dropdown>.dropdown-active,
    .navbar .dropdown .dropdown>.dropdown-active {
        display: block;
    }
    .mobile-nav-show {
        color: var(--color-secondary);
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        margin: 0 10px 0 20px;
    }
    .mobile-nav-hide {
        color: var(--color-secondary);
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .navbar {
        right: 0;
    }
    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.8);
        z-index: 9996;
    }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
    height: 100vh;
}

/* Ajuste para mobile do Why Us */
@media (max-width: 992px) {
    .why-us {
        height: auto;
        min-height: 90vh;
    }
}

.why-us .why-box {
    padding: 20px;
    background: var(--color-primary);
    color: #fff;
}

.why-us .why-box h3 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .why-us .why-box h3 {
        font-size: 28px;
    }
}

.why-us .why-box p {
    margin-bottom: 30px;
    font-size: 22px;
}

@media (max-width: 576px) {
    .why-us .why-box p {
        font-size: 18px;
    }
}

.why-us .icon-box {
    text-align: center;
    background: #fff;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(55, 55, 63, 0.1);
    transition: 0.3s;
}

@media (max-width: 576px) {
    .why-us .icon-box {
        padding: 25px 20px;
    }
}

.why-us .icon-box i {
    color: var(--color-primary);
    margin-bottom: 30px;
    font-size: 32px;
    margin-bottom: 30px;
    background: rgba(206, 18, 18, 0.1);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
}

.why-us .icon-box h4 {
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 30px 0;
    font-family: var(--font-secondary);
}

@media (max-width: 576px) {
    .why-us .icon-box h4 {
        font-size: 18px;
    }
}

.why-us .icon-box p {
    font-size: 15px;
    color: #6c757d;
}

@media (min-width: 1200px) {
    .why-us .icon-box:hover {
        transform: scale(1.1);
    }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/

.stats-counter {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(126, 126, 126, 0.5)), url("../img/stats-bg.jpg") center center;
    background-size: cover;
    padding: 20px 0;
    height: 100vh;
}

/* Ajustes para mobile do Stats Counter */
@media (max-width: 992px) {
    .stats-counter {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
    }
}

@media (min-width: 1365px) {
    .stats-counter {
        background-attachment: fixed;
    }
}

.stats-counter .stats-item {
    padding: 50px;
    width: 100%;
}

@media (max-width: 576px) {
    .stats-counter .stats-item {
        padding: 30px 15px;
    }
}

.stats-counter .stats-item span {
    font-size: 48px;
    display: block;
    color: #fff;
    font-weight: 700;
}

.stats-counter .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.79);
}

/* Ajuste para mobile do texto do stats */
@media (max-width: 576px) {
    .stats-counter .stats-item p {
        font-size: 20px;
        line-height: 1.4;
    }
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
    background: #f4f4f4;
    padding: 30px;
    height: 100%;
}

@media (max-width: 576px) {
    .contact .info-item {
        padding: 20px;
    }
}

.contact .info-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 24px;
    line-height: 0;
    color: #fff;
    background: var(--color-primary);
    border-radius: 50%;
    margin-right: 15px;
}

.contact .info-item h3 {
    font-size: 20px;
    color: #6c757d;
    font-weight: 700;
    margin: 0 0 5px 0;
}

@media (max-width: 576px) {
    .contact .info-item h3 {
        font-size: 16px;
    }
}

.contact .info-item p {
    padding: 0;
    margin: 0;
    line-height: 24px;
    font-size: 14px;
}

@media (max-width: 576px) {
    .contact .info-item p {
        font-size: 12px;
        line-height: 1.4;
    }
}

.contact .info-item .social-links a {
    font-size: 24px;
    display: inline-block;
    color: rgba(55, 55, 63, 0.7);
    line-height: 1;
    margin: 4px 6px 0 0;
    transition: 0.3s;
}

.contact .info-item .social-links a:hover {
    color: var(--color-primary);
}

.contact .php-email-form {
    width: 100%;
    margin-top: 30px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form .form-group {
    padding-bottom: 20px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #059652;
    border-top-color: #fff;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--color-primary);
}

.contact .php-email-form input {
    height: 48px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    background: var(--color-primary);
    border: 0;
    padding: 12px 40px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
    background: rgba(15, 120, 55, 0.767);
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Trabalhe Section
--------------------------------------------------------------*/
.trabalhe {
        background: var(--branco);
}
.trabalhe #contactForm {
    margin: 0;
    padding: 0;
}
.trabalhe .info-item {
    background: #f4f4f4;
    padding: 30px;
    height: 100%;
}

.trabalhe .info-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 24px;
    line-height: 0;
    color: #fff;
    background: var(--color-primary);
    border-radius: 50%;
    margin-right: 15px;
}

.trabalhe .info-item h3 {
    font-size: 20px;
    color: #6c757d;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.trabalhe .info-item p {
    padding: 0;
    margin: 0;
    line-height: 24px;
    font-size: 14px;
}

.trabalhe .info-item .social-links a {
    font-size: 24px;
    display: inline-block;
    color: rgba(55, 55, 63, 0.7);
    line-height: 1;
    margin: 4px 6px 0 0;
    transition: 0.3s;
}

.trabalhe .info-item .social-links a:hover {
    color: var(--color-primary);
}

.trabalhe .php-email-form {
    width: 100%;
    margin-top: 30px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.trabalhe .php-email-form .form-group {
    padding-bottom: 20px;
}

.trabalhe .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.trabalhe .php-email-form .error-message br+br {
    margin-top: 25px;
}

.trabalhe .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.trabalhe .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.trabalhe .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #059652;
    border-top-color: #fff;
    animation: animate-loading 1s linear infinite;
}

.trabalhe .php-email-form input,
.trabalhe .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.trabalhe .php-email-form input:focus,
.trabalhe .php-email-form textarea:focus {
    border-color: var(--color-primary);
}

.trabalhe .php-email-form input {
    height: 48px;
}

.trabalhe .php-email-form textarea {
    padding: 10px 12px;
}

.trabalhe .php-email-form button[type=submit] {
    background: var(--color-primary);
    border: 0;
    padding: 12px 40px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.trabalhe .php-email-form button[type=submit]:hover {
    background: rgba(15, 120, 55, 0.767);
}

.success-message {
    color: #28a745;
    font-size: 24px;
    margin-bottom: 20px;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    width: 100%;
    background-size: cover;
    position: relative;
    height: 100vh;
    padding: 100px 0 60px 0;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 40px 0;
    }
}

.hero img {
    max-width: 600px;
}

.hero h2 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-secondary);
    font-family: var(--font-primary);
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 36px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 28px;
    }
}

.hero h2 span {
    color: var(--color-primary);
}

.hero p {
    color: #4f4f5a;
    font-weight: 400;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero p {
        text-align: center;
        font-size: 16px;
        padding: 0 15px;
    }
}

.hero .btn-cta {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 36px;
    border-radius: 40px;
    transition: 0.5s;
    color: #fff;
    background: var(--color-primary);
    box-shadow: 0 8px 28px rgba(15, 120, 55, 0.2);
}

.hero .btn-cta:hover {
    background: rgba(15, 120, 55, 0.767);
    box-shadow: 0 8px 28px rgba(15, 120, 55, 0.2);
}

.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: var(--font-secondary);
    font-weight: 600;
}

.hero .btn-watch-video i {
    color: var(--color-primary);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}

.hero .btn-watch-video:hover {
    color: var(--color-primary);
}

.hero .btn-watch-video:hover i {
    color: rgba(15, 120, 55, 0.767);
}

@media (max-width: 768px) {
    .hero .btn-cta {
        padding: 10px 28px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .hero h2 {
        font-size: 36px;
    }
    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 14px;
    }
}

/* REDUZIR A IMAGEM DO HERO EM MOBILE */
@media (max-width: 768px) {
    .hero .col-lg-5.order-1.order-lg-2 {
        order: 2 !important;
        margin-top: 20px;
    }
    
    .hero .col-lg-5.order-1.order-lg-2 img {
        max-width: 80%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero .col-lg-5.order-1.order-lg-2 img {
        max-width: 80%;
    }
}

@media (max-width: 400px) {
    .hero .col-lg-5.order-1.order-lg-2 img {
        max-width: 80%;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
    font-size: 14px;
    background-color: #1f1f24;
    padding: 50px 0;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
        text-align: center;
    }
}

.footer .icon {
    margin-right: 15px;
    font-size: 24px;
    line-height: 0;
}

@media (max-width: 768px) {
    .footer .icon {
        margin-right: 10px;
        font-size: 20px;
    }
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
    color: #fff;
}

@media (max-width: 768px) {
    .footer h4 {
        font-size: 14px;
    }
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .footer .footer-links ul li {
        justify-content: center;
        padding: 8px 0;
    }
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: #fff;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .footer .social-links {
        justify-content: center;
    }
    .footer .social-links a {
        margin: 0 5px;
    }
}

.footer .social-links a:hover {
    color: #fff;
    border-color: #fff;
}

.footer .copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer .copyright {
        padding-top: 20px;
        font-size: 12px;
    }
}

.footer .credits {
    padding-top: 4px;
    text-align: center;
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer .credits {
        font-size: 11px;
    }
}

.footer .credits a {
    color: #fff;
}

/* ============================================= */
/* ADIÇÕES PARA CLIENT LOGOS EM MOBILE */
/* ============================================= */

@media (max-width: 576px) {
    .client-logos .row .col-3 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 5px;
    }
    
    .client-logos .row .col-3 img {
        max-width: 100%;
        height: auto;
        padding: 4px;
        background: rgba(255,255,255,0.1);
        border-radius: 4px;
    }
}

/* Ajuste para o container do Why Us em mobile */
@media (max-width: 992px) {
    .why-us .why-box {
        margin-bottom: 30px;
    }
    
    .why-us .icon-box {
        margin-bottom: 20px;
    }
}

/* Ajuste para os itens de stats em mobile */
@media (max-width: 576px) {
    .stats-counter .stats-item {
        padding: 20px 10px;
    }
    
    .stats-counter .stats-item p {
        font-size: 16px;
        line-height: 1.3;
    }
    
    .stats-counter .stats-item u {
        display: block;
        font-weight: 700;
    }
}

/* Ajuste para o mapa em mobile */
@media (max-width: 576px) {
    .contact iframe {
        height: 200px !important;
    }
}