/* =============================================================
   INDEX.CSS - TavoDev - COMPLETO E AJUSTADO
   ============================================================= */

/* =============================================================
   1. IMPORTS DE FONTES E ÍCONES
   ============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Oswald:wght@400;500;600;700&display=swap');

/* =============================================================
   2. VARIÁVEIS E RESET
   ============================================================= */
:root {
    --primary: #2eca7f;
    --primary-dark: #1a9e63;
    --primary-light: rgba(46, 202, 127, 0.12);
    --secondary: #1a2d62;
    --secondary-dark: #0f1a3a;
    --text: #4a4a6a;
    --text-light: #8888aa;
    --bg-light: #f5f7fa;
    --white: #ffffff;
    --shadow: 0 10px 50px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 70px rgba(0, 0, 0, 0.1);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-full: 9999px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: var(--secondary);
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: var(--radius-full); }

/* =============================================================
   3. PRELOADER - CORES TAVODEV (Verde e Azul)
   ============================================================= */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    overflow: hidden;
    background: #ffffff;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #2eca7f;
    /* Verde TavoDev */
    -webkit-animation: spin 1.7s linear infinite;
    animation: spin 1.7s linear infinite;
    z-index: 11;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #1a2d62;
    /* Azul TavoDev */
    -webkit-animation: spin-reverse 0.6s linear infinite;
    animation: spin-reverse 0.6s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #1a9e63;
    /* Verde escuro TavoDev */
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #ffffff;
    z-index: 10;
}

#loader-wrapper .loader-section.section-left { left: 0; }
#loader-wrapper .loader-section.section-right { right: 0; }

.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}

/* =============================================================
   4. HEADER
   ============================================================= */
#navigation {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

#navigation.navbar-fixed {
    background: rgba(255, 255, 255, 0.70) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    padding: 5px 0;
}

.site-logo {
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 60px;
}

.site-logo a {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.site-logo a:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(46, 202, 127, 0.15);
}

.site-logo img {
    width: 130px;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: var(--transition);
}

.header_right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    min-height: 60px;
    position: relative;
    gap: 10px;
}

#main-menu ul {
    display: flex;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#main-menu ul li {
    list-style: none;
}

#main-menu ul li a {
    font-weight: 600;
    font-size: 14px;
    padding: 10px 18px;
    color: var(--secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    display: block;
}

#main-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

#main-menu ul li a:hover::after,
#main-menu ul li a.active::after {
    width: 50%;
}

#main-menu ul li a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

/* =============================================================
   5. COPA 2026 BADGE - SEMPRE NO CANTO DIREITO
   ============================================================= */
.copa2026-texto {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #002776, #003399);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 2px solid #FFDF00;
    box-shadow: 0 4px 20px rgba(0, 39, 118, 0.3);
    transition: var(--transition);
    cursor: pointer;
    animation: pulse-copa 3s ease-in-out infinite;
    flex-shrink: 0;
    margin-left: auto !important;
}

@keyframes pulse-copa {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.copa2026-texto:hover {
    animation: none !important;
    transform: scale(1.08) !important;
    background: linear-gradient(135deg, #FFDF00, #FFD700) !important;
    border-color: #FFD700 !important;
    box-shadow: 0 0 40px rgba(255, 223, 0, 0.3) !important;
}

.copa2026-texto:hover .copa,
.copa2026-texto:hover .ano {
    color: #002776 !important;
}

.copa2026-texto .copa {
    color: #009C3B;
    font-size: 13px;
    font-weight: 900;
    font-family: 'Anton', sans-serif;
}

.copa2026-texto .ano {
    color: #FFDF00;
    font-size: 13px;
    font-weight: 900;
    font-family: 'Anton', sans-serif;
}

/* =============================================================
   6. MOBILE MENU
   ============================================================= */
#mobile_menu {
    display: none;
}

.slicknav_menu {
    background: transparent !important;
    padding: 0 !important;
}

.slicknav_btn {
    background: var(--secondary) !important;
    border-radius: 10px !important;
    padding: 8px 12px !important;
    margin: 0 !important;
    position: relative !important;
    display: inline-block !important;
    box-shadow: 0 2px 10px rgba(26, 45, 98, 0.15);
}

.slicknav_icon-bar {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background: #ffffff !important;
    margin: 4px 0 !important;
    border-radius: 2px !important;
}

.slicknav_menutxt {
    display: none !important;
}

.slicknav_nav {
    background: var(--white) !important;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    padding: 10px 0 !important;
    margin-top: 10px !important;
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    min-width: 220px !important;
    z-index: 999 !important;
    top: 100% !important;
}

.slicknav_nav ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.slicknav_nav ul li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.slicknav_nav a {
    color: var(--secondary) !important;
    font-weight: 600 !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
    display: block !important;
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.slicknav_nav a:last-child {
    border-bottom: none !important;
}

.slicknav_nav a:hover {
    background: var(--primary-light) !important;
    color: var(--primary) !important;
}

.slicknav_arrow {
    display: none !important;
}

/* =============================================================
   7. SLIDER / HERO
   ============================================================= */
#kenburns_061 {
    max-height: 550px;
    overflow: hidden;
    position: relative;
    background: var(--secondary-dark);
    margin-top: 76px;
}

#kenburns_061 .carousel-item {
    height: 550px;
    overflow: hidden;
}

#kenburns_061 .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(1.1);
    animation: kenburns-zoom 20s ease-in-out infinite alternate;
}

@keyframes kenburns-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.kenburns_061_slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 85%;
    max-width: 750px;
    z-index: 10;
}

.kenburns_061_slide h2 {
    color: var(--white);
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.kenburns_061_slide h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--primary);
    margin: 14px auto 0;
    border-radius: var(--radius-full);
}

.kenburns_061_slide h1 {
    color: var(--white);
    font-size: 22px;
    font-weight: 300;
    background: rgba(46, 202, 127, 0.15);
    padding: 14px 36px;
    border-radius: var(--radius-full);
    display: inline-block;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 12px;
    letter-spacing: 0.5px;
}

/* =============================================================
   8. PARCEIROS
   ============================================================= */
.partner-logo {
    background: var(--secondary);
    padding: 40px 0;
}

.partner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.partner a {
    display: block;
    transition: var(--transition);
    filter: brightness(0) invert(1) opacity(0.4);
}

.partner a:hover {
    transform: translateY(-4px);
    filter: brightness(0) invert(1) opacity(1);
}

.partner a img {
    max-width: 100px;
    max-height: 50px;
    width: auto;
    height: auto;
}

/* =============================================================
   9. SOBRE / SERVIÇOS
   ============================================================= */
.ab_one {
    padding: 70px 0 30px;
    background: var(--white);
}

.ab_content h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--secondary);
    margin-bottom: 16px;
}

.ab_content h2 u {
    color: var(--primary);
    text-decoration: none;
}

.ab_content > p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 30px;
}

.ab_img img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
}

.ab_img img:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-hover);
}

.abmv {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 22px 26px;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
    border-left: 3px solid transparent;
    cursor: pointer;
}

.abmv:hover {
    transform: translateX(6px);
    border-left-color: var(--primary);
    box-shadow: var(--shadow);
}

.abmv span {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

.abmv:hover span {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.abmv .abmv-text {
    flex: 1;
}

.abmv h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 2px;
}

.abmv p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

/* =============================================================
   10. CONTADORES
   ============================================================= */
.counts {
    background: var(--bg-light);
    padding: 60px 0 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 6px;
}

.section-title p {
    font-size: 36px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
}

.section-title p u {
    color: var(--primary);
    text-decoration: none;
}

.count-box {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 26px 22px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.count-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.count-box i {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    transition: var(--transition);
}

.count-box:hover i {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.count-box .count-info {
    flex: 1;
}

.count-box span {
    font-size: 34px;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    line-height: 1;
}

.count-box p {
    font-size: 14px;
    color: var(--text);
    margin: 0;
    font-weight: 500;
}

/* =============================================================
   11. NEWSLETTER
   ============================================================= */
.newsletter_area {
    background: linear-gradient(135deg, #f0f7f4, #e8f5e9);
    padding: 60px 0;
}

.subs_form {
    text-align: center;
}

.subs_form h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 6px;
}

.subs_form h3::after {
    content: ' ✉️';
}

.subs_form p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 26px;
}

.home_subs {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

.subscribe__input {
    width: 100%;
    height: 56px;
    padding: 0 70px 0 24px;
    border: 2px solid #e0e8e0;
    border-radius: var(--radius-full);
    font-size: 15px;
    color: var(--secondary);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.subscribe__input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.subscribe__input::placeholder {
    color: #b0b8b0;
}

.subscribe__btn {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe__btn:hover {
    background: var(--primary-dark);
    transform: scale(1.04);
    box-shadow: 0 4px 20px rgba(46, 202, 127, 0.3);
}

/* =============================================================
   12. FAQ
   ============================================================= */
.faq_area {
    padding: 70px 0 40px;
    background: var(--white);
}

.accordion-item {
    border: none;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow-hover);
}

.accordion-button {
    font-weight: 700;
    font-size: 16px;
    padding: 18px 24px;
    background: var(--white) !important;
    color: var(--secondary) !important;
    border: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary) !important;
    background: var(--primary-light) !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-body {
    padding: 0 24px 24px;
    color: var(--text);
    line-height: 1.8;
    font-size: 15px;
}

.pt_faq img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
}

/* =============================================================
   13. FOOTER
   ============================================================= */
.footer {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    padding: 60px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(46, 202, 127, 0.04);
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(46, 202, 127, 0.03);
    pointer-events: none;
}

.single_footer {
    position: relative;
    z-index: 1;
}

.single_footer img {
    width: 130px;
    height: auto;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    margin-bottom: 16px;
}

.single_footer img:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.single_footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.single_footer h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 12px;
}

.single_footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

.single_footer blockquote {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    border-left: 3px solid var(--primary);
    padding-left: 18px;
    margin: 0;
    font-style: italic;
}

.single_footer blockquote br {
    display: block;
    margin-top: 6px;
}

.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-size: 17px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 202, 127, 0.3);
    border-color: transparent;
}

.sf_contact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    margin-bottom: 12px;
}

.sf_contact:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(4px);
}

.sf_contact span {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(46, 202, 127, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}

.sf_contact:hover span {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.sf_contact br {
    display: none;
}

.sf_contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.sf_contact a:hover {
    color: var(--primary);
}

.fc {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    margin-top: 35px;
}

.footer_copyright p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    margin: 0;
}

.footer-social a:last-child {
    background: rgba(46, 202, 127, 0.08);
    border-color: rgba(46, 202, 127, 0.1);
}

.footer-social a:last-child:hover {
    background: var(--primary);
}

/* =============================================================
   14. WHATSAPP BUTTON
   ============================================================= */
.whatsapp-float-container {
    position: fixed !important;
    bottom: 30px !important;
    left: 30px !important;
    z-index: 9999 !important;
}

.whatsapp-btn {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: #25D366 !important;
    color: #ffffff !important;
    padding: 14px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    font-family: 'Mulish', sans-serif !important;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    cursor: pointer !important;
    animation: pulse-whatsapp 2.5s ease-in-out infinite !important;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 45px rgba(37, 211, 102, 0.5);
    }
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 50px rgba(37, 211, 102, 0.5) !important;
    background: #1a9e63 !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    animation: none !important;
}

.whatsapp-btn:active {
    transform: scale(0.95) !important;
}

.whatsapp-btn i {
    font-size: 24px !important;
    color: #ffffff !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s ease !important;
}

.whatsapp-btn:hover i {
    transform: scale(1.15) !important;
}

.whatsapp-btn span {
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    color: #ffffff !important;
    transition: transform 0.3s ease !important;
}

.whatsapp-btn:hover span {
    transform: translateX(2px) !important;
}

/* =============================================================
   15. RESPONSIVIDADE
   ============================================================= */

/* Tablets */
@media (max-width: 992px) {
    #main-menu {
        display: none !important;
    }

    #mobile_menu {
        display: block !important;
    }

    .slicknav_nav {
        left: 0 !important;
        right: auto !important;
        min-width: 220px !important;
    }

    .copa2026-texto {
        margin-left: auto !important;
        animation: pulse-copa-mobile 3s ease-in-out infinite !important;
    }

    @keyframes pulse-copa-mobile {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.02); }
    }

    .copa2026-texto:hover {
        transform: scale(1.05) !important;
    }

    .kenburns_061_slide h2 {
        font-size: 36px;
    }
    .kenburns_061_slide h1 {
        font-size: 18px;
        padding: 10px 24px;
    }

    .ab_content h2 {
        font-size: 32px;
    }
    .ab_img {
        margin-bottom: 30px;
    }

    .section-title p {
        font-size: 28px;
    }

    .subs_form h3 {
        font-size: 26px;
    }

    .single_footer {
        margin-bottom: 30px;
    }

    .whatsapp-btn {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }

    .whatsapp-btn i {
        font-size: 22px !important;
    }
}

/* Mobile Grande */
@media (max-width: 768px) {
    #navigation {
        padding: 8px 0;
    }

    .site-logo a {
        border-radius: 12px;
    }

    .site-logo img {
        width: 100px;
        border-radius: 12px;
    }

    .slicknav_btn {
        padding: 6px 10px !important;
        border-radius: 8px !important;
    }

    .slicknav_icon-bar {
        width: 18px !important;
        height: 2px !important;
        margin: 3px 0 !important;
    }

    .copa2026-texto {
        padding: 5px 12px !important;
        margin-left: auto !important;
    }

    .copa2026-texto .copa,
    .copa2026-texto .ano {
        font-size: 11px !important;
    }

    #kenburns_061 {
        margin-top: 66px;
    }

    #kenburns_061 .carousel-item {
        height: 400px;
    }

    .kenburns_061_slide h2 {
        font-size: 32px;
    }

    .kenburns_061_slide h2::after {
        width: 50px;
        margin-top: 10px;
    }

    .kenburns_061_slide h1 {
        font-size: 16px;
        padding: 10px 24px;
    }

    .ab_one {
        padding: 50px 0 20px;
    }
    .ab_content h2 {
        font-size: 28px;
    }
    .abmv {
        padding: 18px 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    .abmv span {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .count-box {
        padding: 20px 18px;
        flex-direction: column;
        text-align: center;
    }
    .count-box i {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    .count-box span {
        font-size: 28px;
    }
    .section-title p {
        font-size: 24px;
    }

    .subs_form h3 {
        font-size: 24px;
    }
    .subscribe__input {
        height: 50px;
        font-size: 14px;
        padding: 0 60px 0 18px;
    }
    .subscribe__btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .accordion-button {
        font-size: 15px;
        padding: 14px 18px;
    }
    .accordion-body {
        font-size: 14px;
        padding: 0 18px 18px;
    }

    .footer {
        padding: 50px 0 20px;
    }
    .single_footer img {
        width: 100px;
    }
    .sf_contact span {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .sf_contact a {
        font-size: 13px;
    }

    .whatsapp-float-container {
        bottom: 20px !important;
        left: 20px !important;
    }

    .whatsapp-btn {
        padding: 12px 18px !important;
        font-size: 13px !important;
        border-radius: 50px !important;
        gap: 8px !important;
    }

    .whatsapp-btn i {
        font-size: 20px !important;
    }

    .whatsapp-btn span {
        font-size: 13px !important;
    }
}

/* Mobile Pequeno */
@media (max-width: 576px) {
    #navigation {
        padding: 6px 0;
    }

    #navigation .row.align-items-center {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }

    #navigation .col-sm-6 {
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: none !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 !important;
    }

    #navigation .col-sm-6:first-child {
        flex: 1 1 auto !important;
    }

    #navigation .col-sm-6:last-child {
        flex: 0 0 auto !important;
        margin-left: auto !important;
    }

    .site-logo a {
        border-radius: 10px;
    }

    .site-logo img {
        width: 70px;
        border-radius: 10px;
    }

    .slicknav_btn {
        padding: 5px 8px !important;
        border-radius: 6px !important;
        margin-right: 6px !important;
    }

    .slicknav_icon-bar {
        width: 16px !important;
        height: 2px !important;
        margin: 3px 0 !important;
    }

    .copa2026-texto {
        padding: 4px 10px !important;
        margin-left: auto !important;
        flex-shrink: 0 !important;
        animation: pulse-copa-mobile 3s ease-in-out infinite !important;
        display: inline-flex !important;
        align-items: center !important;
        white-space: nowrap !important;
    }

    .copa2026-texto .copa,
    .copa2026-texto .ano {
        font-size: 10px !important;
        white-space: nowrap !important;
    }

    .copa2026-texto:hover {
        transform: scale(1.05) !important;
    }

    .header_right {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        width: 100% !important;
        gap: 6px !important;
        min-height: auto !important;
    }

    #kenburns_061 {
        margin-top: 56px;
    }

    #kenburns_061 .carousel-item {
        height: 280px;
    }

    #kenburns_061 .carousel-item img {
        object-fit: cover;
        object-position: center 25%;
        filter: brightness(0.45) saturate(1.05);
    }

    .kenburns_061_slide h2 {
        font-size: 24px;
    }

    .kenburns_061_slide h2::after {
        width: 40px;
        height: 3px;
        margin-top: 8px;
    }

    .kenburns_061_slide h1 {
        font-size: 13px;
        padding: 8px 16px;
        background: rgba(46, 202, 127, 0.2);
    }

    .ab_content h2 {
        font-size: 22px;
    }
    .ab_content > p {
        font-size: 15px;
    }
    .abmv p {
        font-size: 13px;
    }

    .section-title p {
        font-size: 18px;
    }
    .count-box {
        padding: 16px;
    }
    .count-box span {
        font-size: 24px;
    }
    .count-box i {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .subs_form h3 {
        font-size: 18px;
    }
    .subs_form p {
        font-size: 14px;
    }
    .subscribe__input {
        height: 44px;
        font-size: 13px;
        padding: 0 50px 0 16px;
    }
    .subscribe__btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
        right: 3px;
        top: 3px;
    }

    .single_footer img {
        width: 70px;
    }

    .whatsapp-float-container {
        bottom: 14px !important;
        left: 14px !important;
    }

    .whatsapp-btn {
        padding: 10px !important;
        border-radius: 50% !important;
        width: 50px !important;
        height: 50px !important;
        justify-content: center !important;
        gap: 0 !important;
        animation: pulse-whatsapp-mobile 2.5s ease-in-out infinite !important;
    }

    @keyframes pulse-whatsapp-mobile {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
        }
        50% {
            transform: scale(1.05);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
        }
    }

    .whatsapp-btn:hover {
        transform: translateY(-2px) scale(1.08) !important;
        animation: none !important;
        border-radius: 50% !important;
    }

    .whatsapp-btn span {
        display: none !important;
    }

    .whatsapp-btn i {
        font-size: 24px !important;
        margin: 0 !important;
    }
}

/* Extra Small */
@media (max-width: 400px) {
    #navigation {
        padding: 4px 0;
    }

    .site-logo img {
        width: 55px;
        border-radius: 8px;
    }

    .slicknav_btn {
        padding: 4px 6px !important;
    }

    .slicknav_icon-bar {
        width: 14px !important;
        height: 2px !important;
        margin: 2px 0 !important;
    }

    .copa2026-texto {
        padding: 3px 8px !important;
    }
    .copa2026-texto .copa,
    .copa2026-texto .ano {
        font-size: 8px !important;
    }

    #kenburns_061 {
        margin-top: 50px;
    }

    #kenburns_061 .carousel-item {
        height: 220px;
    }

    .kenburns_061_slide h2 {
        font-size: 18px;
    }

    .kenburns_061_slide h1 {
        font-size: 11px;
        padding: 6px 12px;
    }

    .count-box span {
        font-size: 20px;
    }

    .whatsapp-float-container {
        bottom: 12px !important;
        left: 12px !important;
    }

    .whatsapp-btn {
        width: 44px !important;
        height: 44px !important;
        padding: 8px !important;
    }

    .whatsapp-btn i {
        font-size: 20px !important;
    }
}

    /* ======================================== */
        /* SEÇÃO DE PROJETOS - ESTILOS ADICIONAIS */
        /* ======================================== */
        .portfolio-section {
            background: #f8f9fc;
            padding: 80px 0;
        }

        .portfolio-section .section-title h2 {
            font-size: 36px;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 10px;
        }

        .portfolio-section .section-title p {
            font-size: 18px;
            color: #6c757d;
            font-weight: 300;
        }

        .portfolio-section .section-title p span {
            color: #2eca7f;
            font-weight: 600;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .portfolio-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: #fff;
            cursor: pointer;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(46, 202, 127, 0.15);
        }

        .portfolio-item .portfolio-image {
            position: relative;
            overflow: hidden;
            height: 250px;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .portfolio-item .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            background: #f0f0f0;
        }

        .portfolio-item:hover .portfolio-image img {
            transform: scale(1.08);
        }

        .portfolio-item .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 46, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
            padding: 20px;
            backdrop-filter: blur(4px);
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-item .portfolio-overlay-content {
            text-align: center;
            color: #fff;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .portfolio-item:hover .portfolio-overlay-content {
            transform: translateY(0);
        }

        .portfolio-item .portfolio-overlay-content p {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .portfolio-item .portfolio-overlay-content .btn-visitar {
            display: inline-block;
            padding: 8px 25px;
            background: #2eca7f;
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            font-size: 13px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .portfolio-item .portfolio-overlay-content .btn-visitar:hover {
            background: #25a86a;
            transform: scale(1.05);
        }

        .portfolio-item .portfolio-info {
            padding: 20px 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .portfolio-item .portfolio-info .portfolio-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 10px;
        }

        .portfolio-item .portfolio-info .portfolio-tags .tag {
            padding: 4px 12px;
            background: rgba(46, 202, 127, 0.1);
            color: #2eca7f;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
        }

        .portfolio-item .portfolio-info p {
            font-size: 14px;
            color: #6c757d;
            margin-bottom: 0;
            flex: 1;
            line-height: 1.6;
        }

        .portfolio-item .portfolio-info .btn-visitar-info {
            display: inline-block;
            padding: 6px 20px;
            background: #2eca7f;
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            font-size: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            margin-top: 12px;
            align-self: flex-start;
        }

        .portfolio-item .portfolio-info .btn-visitar-info:hover {
            background: #25a86a;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(46, 202, 127, 0.3);
        }

        /* ======================================== */
        /* SEÇÃO DE PARCEIROS - SLIDER */
        /* ======================================== */
        .partner-section {
            background: #1a1b31;
            padding: 60px 0;
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .partner-section .section-title h2 {
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin-bottom: 5px;
        }

        .partner-section .section-title p {
            font-size: 16px;
            color: #fbfbfb;
            font-weight: 300;
        }

        .partner-section .section-title p span {
            color: #2eca7f;
            font-weight: 600;
        }

        .partner-slider .partner-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            height: 120px;
            transition: all 0.3s ease;
        }

        .partner-slider .partner-item a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            padding: 15px;
            border-radius: 12px;
            background: #ffffff;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 3px solid transparent;
            text-decoration: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .partner-slider .partner-item a:hover {
            background: #ffffff;
            border-color: #2eca7f;
            box-shadow: 0 8px 35px rgba(46, 202, 127, 0.3);
            transform: translateY(-5px) scale(1.02);
        }

        .partner-slider .partner-item a::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(46, 202, 127, 0.08) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .partner-slider .partner-item a:hover::before {
            opacity: 1;
        }

        .partner-slider .partner-item a::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 12px;
            background: linear-gradient(135deg, #2eca7f, #1a9e63);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .partner-slider .partner-item a:hover::after {
            opacity: 0.1;
        }

        .partner-slider .partner-item img {
            max-width: 150px;
            max-height: 70px;
            width: auto;
            height: auto;
            object-fit: contain;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0.85;
            position: relative;
            z-index: 1;
        }

        .partner-slider .partner-item a:hover img {
            opacity: 1;
            transform: scale(1.08);
        }

        /* Custom Owl Carousel */
        .partner-slider .owl-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .partner-slider .owl-nav button {
            pointer-events: auto;
        }

        .partner-slider .owl-nav button.owl-prev,
        .partner-slider .owl-nav button.owl-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #ffffff !important;
            border: 2px solid #e8ecf0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            color: #1a1a2e !important;
            font-size: 20px !important;
            transition: all 0.3s ease;
            display: flex !important;
            align-items: center;
            justify-content: center;
        }

        .partner-slider .owl-nav button.owl-prev:hover,
        .partner-slider .owl-nav button.owl-next:hover {
            background: #2eca7f !important;
            color: #ffffff !important;
            border-color: #2eca7f;
            box-shadow: 0 4px 20px rgba(46, 202, 127, 0.3);
        }

        .partner-slider .owl-nav button.owl-prev {
            left: -25px;
        }

        .partner-slider .owl-nav button.owl-next {
            right: -25px;
        }

        .partner-slider .owl-dots {
            margin-top: 20px;
        }

        .partner-slider .owl-dots .owl-dot span {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transition: all 0.3s ease;
            margin: 0 4px;
        }

        .partner-slider .owl-dots .owl-dot.active span {
            background: #2eca7f;
            transform: scale(1.2);
        }

        .partner-slider .owl-dots .owl-dot:hover span {
            background: #2eca7f;
        }

        /* ======================================== */
        /* SEÇÃO DE DEPOIMENTOS - SLIDER */
        /* ======================================== */
        .testimonials-section {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: rgba(46, 202, 127, 0.05);
            border-radius: 50%;
            pointer-events: none;
        }

        .testimonials-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: rgba(46, 202, 127, 0.03);
            border-radius: 50%;
            pointer-events: none;
        }

        .testimonials-section .section-title h2 {
            color: #fff;
        }

        .testimonials-section .section-title p {
            color: rgba(255, 255, 255, 0.7);
        }

        .testimonials-section .section-title p span {
            color: #2eca7f;
        }

        .testimonial-slider {
            position: relative;
            max-width: 900px;
            margin: 40px auto 0;
            z-index: 1;
        }

        .testimonial-slider .carousel-inner {
            padding: 10px 0;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 40px 35px;
            transition: all 0.3s ease;
            margin: 0 15px;
            height: 100%;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .testimonial-card .testimonial-quote {
            color: #2eca7f;
            font-size: 32px;
            opacity: 0.3;
            margin-bottom: 15px;
            display: block;
        }

        .testimonial-card .testimonial-text {
            color: rgba(255, 255, 255, 0.85);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-card .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 20px;
        }

        .testimonial-card .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #2eca7f;
        }

        .testimonial-card .testimonial-info h5 {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .testimonial-card .testimonial-info span {
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
        }

        .testimonial-slider .carousel-control-prev,
        .testimonial-slider .carousel-control-next {
            width: 50px;
            height: 50px;
            background: rgba(46, 202, 127, 0.2);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.7;
            transition: all 0.3s ease;
            border: 1px solid rgba(46, 202, 127, 0.3);
        }

        .testimonial-slider .carousel-control-prev {
            left: -70px;
        }

        .testimonial-slider .carousel-control-next {
            right: -70px;
        }

        .testimonial-slider .carousel-control-prev:hover,
        .testimonial-slider .carousel-control-next:hover {
            background: rgba(46, 202, 127, 0.4);
            opacity: 1;
            transform: translateY(-50%) scale(1.05);
        }

        .testimonial-slider .carousel-control-prev-icon,
        .testimonial-slider .carousel-control-next-icon {
            width: 24px;
            height: 24px;
        }

        .testimonial-slider .carousel-control-prev-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
        }

        .testimonial-slider .carousel-control-next-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        /* ======================================== */
        /* MODAL DE PROJETO */
        /* ======================================== */
        .project-modal .modal-content {
            border-radius: 20px;
            border: none;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
        }

        .project-modal .modal-header {
            border-bottom: 1px solid #e8ecf0;
            padding: 20px 30px;
        }

        .project-modal .modal-header .modal-title {
            font-weight: 700;
            font-size: 20px;
            color: #1a1a2e;
        }

        .project-modal .modal-header .close {
            font-size: 28px;
            opacity: 0.5;
            transition: opacity 0.3s ease;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            line-height: 1;
        }

        .project-modal .modal-header .close:hover {
            opacity: 1;
        }

        .project-modal .modal-body {
            padding: 0;
        }

        .project-modal .modal-body .project-image-container {
            width: 100%;
            max-height: 500px;
            overflow: hidden;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 200px;
        }

        .project-modal .modal-body .project-image-container img {
            width: 100%;
            height: 100%;
            max-height: 500px;
            object-fit: contain;
        }

        .project-modal .modal-body .project-image-container .modal-placeholder {
            color: #adb5bd;
            font-size: 64px;
        }

        .project-modal .modal-body .project-details {
            padding: 30px;
        }

        .project-modal .modal-body .project-details .project-category {
            display: inline-block;
            padding: 5px 15px;
            background: rgba(46, 202, 127, 0.1);
            color: #2eca7f;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .project-modal .modal-body .project-details p {
            font-size: 16px;
            color: #333;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .project-modal .modal-body .project-details .btn-visitar-modal {
            display: inline-block;
            padding: 10px 30px;
            background: #2eca7f;
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            margin-top: 15px;
        }

        .project-modal .modal-body .project-details .btn-visitar-modal:hover {
            background: #25a86a;
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(46, 202, 127, 0.4);
        }

        .project-modal .modal-footer {
            border-top: 1px solid #e8ecf0;
            padding: 15px 30px;
        }

        .project-modal .modal-footer .btn-close-modal {
            padding: 10px 30px;
            background: #6c757d;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .project-modal .modal-footer .btn-close-modal:hover {
            background: #5a6268;
            transform: scale(1.02);
        }

        /* ======================================== */
        /* RODAPÉ - ESTILOS ADICIONAIS */
        /* ======================================== */
        .footer .payment-methods {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer .payment-methods .payment-title {
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .footer .payment-methods .payment-icons {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .footer .payment-methods .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            
        }

        .footer .payment-methods .payment-item img {
            height: 28px;
            width: auto;
            max-width: 100px;
           /* filter: brightness(0) invert(1); */
            transition: all 0.3s ease;
            object-fit: contain;
            border-radius: 20px;
        }

        .footer .payment-methods .payment-item:hover img {
            transform: scale(1.05);
            opacity: 1;
        }

        .footer .payment-methods .payment-item .payment-label {
            color: rgba(255, 255, 255, 0.5);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* ======================================== */
        /* RESPONSIVIDADE */
        /* ======================================== */
        @media (max-width: 992px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .testimonial-slider .carousel-control-prev {
                left: -10px;
            }

            .testimonial-slider .carousel-control-next {
                right: -10px;
            }

            .testimonial-slider .carousel-control-prev,
            .testimonial-slider .carousel-control-next {
                width: 40px;
                height: 40px;
            }

            .footer .payment-methods .payment-item img {
                height: 24px;
                max-width: 80px;
            }

            .partner-slider .owl-nav button.owl-prev {
                left: -10px;
            }

            .partner-slider .owl-nav button.owl-next {
                right: -10px;
            }

            .partner-slider .owl-nav button.owl-prev,
            .partner-slider .owl-nav button.owl-next {
                width: 35px;
                height: 35px;
                font-size: 16px !important;
            }
        }

        @media (max-width: 768px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .portfolio-item .portfolio-image {
                height: 200px;
            }
            
            .portfolio-section .section-title h2 {
                font-size: 28px;
            }
            
            .testimonials-section .section-title h2 {
                font-size: 28px;
            }

            .testimonial-card {
                padding: 30px 25px;
                min-height: 240px;
                margin: 0 5px;
            }

            .testimonial-card .testimonial-text {
                font-size: 14px;
            }

            .testimonial-slider .carousel-control-prev,
            .testimonial-slider .carousel-control-next {
                width: 35px;
                height: 35px;
                top: 50%;
            }

            .testimonial-slider .carousel-control-prev {
                left: -5px;
            }

            .testimonial-slider .carousel-control-next {
                right: -5px;
            }

            .testimonial-slider .carousel-control-prev-icon,
            .testimonial-slider .carousel-control-next-icon {
                width: 18px;
                height: 18px;
            }

            .project-modal .modal-body .project-image-container {
                max-height: 300px;
            }

            .project-modal .modal-body .project-details {
                padding: 20px;
            }

            .project-modal .modal-body .project-details p {
                font-size: 14px;
            }

            .project-modal .modal-header {
                padding: 15px 20px;
            }

            .footer .payment-methods .payment-item img {
                height: 22px;
                max-width: 70px;
            }

            .partner-slider .owl-nav button.owl-prev,
            .partner-slider .owl-nav button.owl-next {
                width: 30px;
                height: 30px;
                font-size: 14px !important;
            }

            .partner-slider .owl-nav button.owl-prev {
                left: -5px;
            }

            .partner-slider .owl-nav button.owl-next {
                right: -5px;
            }
        }

        @media (max-width: 480px) {
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .portfolio-item .portfolio-image {
                height: 180px;
            }
            
            .portfolio-item .portfolio-info {
                padding: 15px 18px;
            }
            
            .portfolio-item .portfolio-info p {
                font-size: 13px;
            }

            .testimonial-card {
                padding: 25px 20px;
                min-height: 200px;
            }

            .testimonial-card .testimonial-text {
                font-size: 13px;
            }

            .testimonial-card .testimonial-quote {
                font-size: 24px;
                margin-bottom: 10px;
            }

            .testimonial-slider .carousel-control-prev,
            .testimonial-slider .carousel-control-next {
                display: none;
            }

            .project-modal .modal-body .project-image-container {
                max-height: 200px;
            }

            .project-modal .modal-body .project-details {
                padding: 15px;
            }

            .project-modal .modal-body .project-details p {
                font-size: 13px;
            }

            .footer .payment-methods .payment-item img {
                height: 20px;
                max-width: 60px;
            }

            .partner-slider .owl-nav {
                display: none;
            }

            .partner-slider .partner-item {
                height: 100px;
            }

            .partner-slider .partner-item img {
                max-width: 120px;
                max-height: 60px;
            }
        }
        
        /* ======================================== */
        /* ANIMAÇÃO DE LOADING PARA IMAGENS */
        /* ======================================== */
        .portfolio-image img.loading {
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .portfolio-image img.loaded {
            opacity: 1;
        }
        
        .portfolio-image .spinner {
            position: absolute;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) !important;
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #2eca7f;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            pointer-events: none;
            z-index: 5;
        }

        .portfolio-image .spinner.hidden {
            display: none !important;
        }
        
        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg) !important; }
            100% { transform: translate(-50%, -50%) rotate(360deg) !important; }
        }
        
/* =============================================================
   FIM
   ============================================================= */