/* ========================================================= */
/* -- VARIÁVEIS CSS E CONFIGURAÇÕES GLOBAIS -- */
/* ========================================================= */
:root {
    --primary-color: #1a365d;
    --secondary-color: #4a90e2;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-800: #343a40;
    --shadow: 0 4px 6px rgba(26, 54, 93, 0.1);
    --shadow-lg: 0 10px 15px rgba(26, 54, 93, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
}

/* ========================================================= */
/* -- NAVBAR E HEADER -- */
/* ========================================================= */
.navbar {
    background: transparent !important;
    box-shadow: none;
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(26, 54, 93, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: #fff !important;
    font-size: 1.5rem;
    transition: color 0.4s ease;
}

.navbar.scrolled .navbar-brand {
    color: var(--primary-color) !important;
}

.navbar-logo {
    height: 40px;
    transition: transform 0.3s ease, filter 0.4s ease;
    filter: brightness(0) invert(1);
}

.navbar.scrolled .navbar-logo {
    filter: none;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
    transition: border-color 0.4s ease;
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(26, 54, 93, 0.3);
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
    transition: filter 0.4s ease;
}

.navbar.scrolled .navbar-toggler-icon {
    filter: none;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
    opacity: 0.75;
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
    opacity: 1;
}

.navbar-nav .nav-link.active {
    color: #fff !important;
    opacity: 1;
}

.navbar.scrolled .navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar.scrolled .navbar-nav .nav-link::after {
    background: var(--secondary-color);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-whatsapp-nav {
    background: #25d366;
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-whatsapp-nav:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* ========================================================= */
/* -- HERO MINIMALISTA -- */
/* ========================================================= */
.hero-minimal {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 150px 0 80px;
}

.hero-minimal__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.1);
    z-index: 0;
}

.hero-minimal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(26, 54, 93, 0.95) 0%,
        rgba(26, 54, 93, 0.65) 25%,
        rgba(26, 54, 93, 0.15) 100%
    );
    z-index: 1;
}

.hero-minimal__overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, .03) 25%, rgba(255, 255, 255, .03) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .03) 75%, rgba(255, 255, 255, .03) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, .03) 25%, rgba(255, 255, 255, .03) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .03) 75%, rgba(255, 255, 255, .03) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    opacity: 0.4;
}

.hero-minimal__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding-left: 40px;
}

.hero-minimal__pretitle {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    opacity: 0;
    animation: slideFromLeft 0.6s ease-out 0.2s forwards;
}

.hero-minimal__pretitle-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #4a90e2, transparent);
}

.hero-minimal__pretitle-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-minimal__title {
    font-family: 'Sora', sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: titleLineReveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.4s; }
.title-line:nth-child(2) { animation-delay: 0.6s; }
.title-line:nth-child(3) { animation-delay: 0.8s; }

@keyframes titleLineReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-minimal__title-line {
    width: 0;
    height: 3px;
    background: #4a90e2;
    margin-bottom: 32px;
    animation: drawLine 1.2s ease-out 0.8s forwards;
}

.hero-minimal__description {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 40px 0;
    opacity: 0;
    animation: fadeIn 0.7s ease-out 0.9s forwards;
}

.hero-minimal__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0;
    animation: fadeIn 0.6s ease-out 1.2s forwards;
}

.hero-minimal__badge-icon {
    width: 20px;
    height: 20px;
    background: #4a90e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
}

.hero-minimal__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    opacity: 0;
    animation: fadeInPulse 0.8s ease-out 1.5s forwards;
}

.hero-minimal__scroll-text {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.hero-minimal__scroll-icon {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
    margin: 0 auto;
}

.hero-minimal__scroll-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

/* --------------------------------------------------------- */
/* -- Animações do Hero -- */
/* --------------------------------------------------------- */
@keyframes slideFromLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes drawLine {
    from { width: 0; }
    to { width: 120px; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInPulse {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* --------------------------------------------------------- */
/* -- Botões CTA do Hero -- */
/* --------------------------------------------------------- */
.hero-minimal__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    opacity: 0;
    animation: fadeIn 0.7s ease-out 1.5s forwards;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25d366;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    letter-spacing: 0.3px;
}

.btn-hero-primary:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.btn-hero-primary i { font-size: 1.2rem; }

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.9);
    color: #fff;
    transform: translateY(-3px);
}


/* ========================================================= */
/* -- SCROLL REVEAL -- */
/* ========================================================= */
.sobre-card,
.gallery-card,
.mvv-card-professional,
.service-executed-card,
.credibility-item,
.faq-item {
    transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.3s ease !important;
}

.sobre-card.reveal-pending,
.gallery-card.reveal-pending,
.mvv-card-professional.reveal-pending,
.service-executed-card.reveal-pending,
.credibility-item.reveal-pending,
.faq-item.reveal-pending {
    opacity: 0;
    transform: translateY(24px);
}

.sobre-card.visible,
.gallery-card.visible,
.mvv-card-professional.visible,
.service-executed-card.visible,
.credibility-item.visible,
.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================= */
/* -- BOTÕES E CTAs -- */
/* ========================================================= */
.btn-primary-custom {
    background: var(--secondary-color);
    border: none;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-outline-custom:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ========================================================= */
/* -- SEÇÕES GERAIS -- */
/* ========================================================= */
.section-padding {
    padding: 3.5rem 0;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-800);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    opacity: 0.8;
}

/* ========================================================= */
/* -- SOBRE -- */
/* ========================================================= */
.sobre-section {
    background: #f8faff;
    position: relative;
}

.sobre-section .container {
    position: relative;
    z-index: 1;
}

/* Badge */
.sobre-badge {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: var(--secondary-color);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(74, 144, 226, 0.22);
    margin-bottom: 1rem;
}

/* Cards */
.sobre-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.07);
    border: 1px solid rgba(26, 54, 93, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sobre-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.sobre-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 42px rgba(26, 54, 93, 0.13);
}

.sobre-card:hover::after {
    transform: scaleX(1);
}

/* Highlighted center card */
.sobre-card--highlight {
    background: linear-gradient(160deg, #0d1f3c 0%, #1a365d 60%, #1e3f72 100%);
    border-color: transparent;
    box-shadow: 0 14px 44px rgba(26, 54, 93, 0.28);
}

.sobre-card--highlight::after {
    background: linear-gradient(90deg, var(--secondary-color), #7ab8f5);
    transform: scaleX(1);
}

.sobre-card--highlight:hover {
    box-shadow: 0 22px 52px rgba(26, 54, 93, 0.38);
}

/* Icon */
.sobre-card__icon {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.22);
    transition: transform 0.3s ease;
}

.sobre-card:hover .sobre-card__icon {
    transform: scale(1.08) rotate(-3deg);
}

.sobre-card__icon--alt {
    background: linear-gradient(135deg, #5e35b1, #4a90e2);
    box-shadow: 0 6px 20px rgba(94, 53, 177, 0.22);
}

.sobre-card--highlight .sobre-card__icon {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

/* Title */
.sobre-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.sobre-card--highlight .sobre-card__title {
    color: #ffffff;
}

/* Description */
.sobre-card__desc {
    font-size: 0.88rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.sobre-card--highlight .sobre-card__desc {
    color: rgba(255, 255, 255, 0.65);
}

/* List */
.sobre-card__list {
    text-align: left;
    padding: 0;
    margin: 0;
}

.sobre-card__list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.87rem;
    color: #495057;
    padding: 0.38rem 0;
    border-top: 1px solid rgba(26, 54, 93, 0.06);
}

.sobre-card--highlight .sobre-card__list li {
    color: rgba(255, 255, 255, 0.8);
    border-top-color: rgba(255, 255, 255, 0.1);
}

.sobre-card__list li i {
    font-size: 0.75rem;
    color: #22c55e;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
}

.sobre-card__list li i.fa-phone {
    color: var(--secondary-color);
}

.sobre-card--highlight .sobre-card__list li i {
    color: #86efac;
}

/* Stats bar */
.sobre-statsbar {
    background: linear-gradient(135deg, var(--primary-color), #1e3f72);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(26, 54, 93, 0.2);
}

.sobre-statsbar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.6rem 1rem;
    position: relative;
}

.sobre-statsbar__item:not(.sobre-statsbar__item--last)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.sobre-statsbar__item strong {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    background: linear-gradient(135deg, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.sobre-statsbar__item span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

/* ========================================================= */
/* -- METODOLOGIA / PROCESSO -- */
/* ========================================================= */
.processo-section {
    background: linear-gradient(160deg, #0d1f3c 0%, #1a365d 55%, #1e3f72 100%);
    position: relative;
    overflow: hidden;
}

/* Dot pattern sutil */
.processo-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* Glow accent no canto superior direito */
.processo-section::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Garante que conteúdo fica sobre os pseudo-elementos */
.processo-section .container {
    position: relative;
    z-index: 1;
}

/* Títulos sobre fundo escuro */
.processo-section .section-title {
    color: #ffffff;
}

.processo-section .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

/* Glow sob o vídeo */
.processo-video-glow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 90%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(74, 144, 226, 0.18) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

/* Vídeo — sem moldura, sombra dramática */
.processo-video-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.processo-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    flex-shrink: 0;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55),
                0 0 0 1px rgba(255, 255, 255, 0.06);
}

.processo-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.processo-video-caption {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.processo-video-caption__icon {
    width: 44px;
    height: 44px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.processo-video-caption__text h6 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
}

.processo-video-caption__text p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0;
    font-size: 0.85rem;
}

/* Steps — glassmorphism */
.processo-steps-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Timeline overrides para fundo escuro */
.processo-section .process-steps__title {
    color: rgba(255, 255, 255, 0.9);
}

.processo-section .timeline-card {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: rgba(74, 144, 226, 0.35);
    box-shadow: none;
}

.processo-section .timeline-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.processo-section .timeline-card__title {
    color: #ffffff;
}

.processo-section .timeline-card__desc {
    color: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.processo-section .timeline-card__icon {
    background: rgba(74, 144, 226, 0.18);
    color: var(--secondary-color);
}

.processo-section .timeline-card__icon--final {
    background: rgba(34, 197, 94, 0.18);
    color: #22c55e;
}

/* Diferenciais grid */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.diferencial-card {
    text-align: center;
    padding: 1.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.diferencial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.diferencial-card__icon {
    font-size: 2rem;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.85rem;
}

.diferencial-card__title {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.diferencial-card__desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    line-height: 1.4;
}

/* ========================================================= */
/* -- METODOLOGIA / PROCESSO TIMELINE -- */
/* ========================================================= */
.process-steps__title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.8rem;
    font-size: 1rem;
}

.process-timeline {
    position: relative;
}

.timeline-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    position: relative;
    padding-bottom: 0.5rem;
}

/* Linha vertical conectando os passos */
.timeline-step:not(.timeline-step--last) .timeline-marker::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    width: 2px;
    height: calc(100% - 8px);
    background: linear-gradient(to bottom, var(--secondary-color), #c3dafe);
}

.timeline-marker {
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-color), #2c5282);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.timeline-number--final {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}

.timeline-card {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    background: var(--white);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 12px rgba(26, 54, 93, 0.07);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    flex: 1;
}

.timeline-card:hover {
    border-left-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.15);
    transform: translateX(4px);
}

.timeline-step--last .timeline-card:hover {
    border-left-color: #22c55e;
}

.timeline-card__icon {
    width: 34px;
    height: 34px;
    background: #e8f0fe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.timeline-card__icon--final {
    background: #dcfce7;
    color: #16a34a;
}

.timeline-card:hover .timeline-card__icon {
    background: var(--secondary-color);
    color: #fff;
}

.timeline-step--last .timeline-card:hover .timeline-card__icon {
    background: #22c55e;
    color: #fff;
}

.timeline-card__title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.timeline-card__desc {
    color: var(--gray-800);
    opacity: 0.75;
    margin-bottom: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.timeline-step:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(74, 144, 226, 0.45);
}

/* ========================================================= */
/* -- SERVIÇOS -- */
/* ========================================================= */

.servicos-section {
    background: #f4f7ff;
    position: relative;
}

@media (min-width: 992px) {
    .servicos-section .col-lg-5 {
        margin-bottom: 0 !important;
    }
}

.servicos-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(26, 54, 93, 0.05) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

.servicos-section .container {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------- */
/* Left: dark sidebar list */
/* --------------------------------------------------------- */
.services-list {
    background: var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(26, 54, 93, 0.28);
    counter-reset: service-num;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: background 0.22s ease, border-left-color 0.22s ease;
    background: transparent;
    margin: 0;
    position: relative;
    flex: 1;
    counter-increment: service-num;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.service-item::before {
    content: counter(service-num, decimal-leading-zero);
    font-size: 0.68rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    color: rgba(255, 255, 255, 0.22);
    letter-spacing: 0.5px;
    flex-shrink: 0;
    width: 18px;
    line-height: 1;
}

.service-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-right: 0;
    transition: background 0.22s ease, color 0.22s ease;
}

.service-item-content {
    flex: 1;
    min-width: 0;
}

.service-item-content h5 {
    margin: 0 0 0.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

.service-item-content p {
    margin: 0;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.4;
}

.service-item-arrow {
    color: rgba(255, 255, 255, 0.18);
    font-size: 0.82rem;
    transition: color 0.22s ease;
    flex-shrink: 0;
}

/* --------------------------------------------------------- */
/* Active states */
/* --------------------------------------------------------- */
#tab-vicios:checked ~ .row label[for="tab-vicios"],
#tab-lavagem:checked ~ .row label[for="tab-lavagem"],
#tab-pintura:checked ~ .row label[for="tab-pintura"],
#tab-recuperacao:checked ~ .row label[for="tab-recuperacao"],
#tab-impermeabilizacao:checked ~ .row label[for="tab-impermeabilizacao"],
#tab-laudos:checked ~ .row label[for="tab-laudos"] {
    background: rgba(74, 144, 226, 0.15) !important;
    border-left-color: var(--secondary-color) !important;
}

#tab-vicios:checked ~ .row label[for="tab-vicios"]::before,
#tab-lavagem:checked ~ .row label[for="tab-lavagem"]::before,
#tab-pintura:checked ~ .row label[for="tab-pintura"]::before,
#tab-recuperacao:checked ~ .row label[for="tab-recuperacao"]::before,
#tab-impermeabilizacao:checked ~ .row label[for="tab-impermeabilizacao"]::before,
#tab-laudos:checked ~ .row label[for="tab-laudos"]::before {
    color: var(--secondary-color);
}

#tab-vicios:checked ~ .row label[for="tab-vicios"] .service-item-content h5,
#tab-lavagem:checked ~ .row label[for="tab-lavagem"] .service-item-content h5,
#tab-pintura:checked ~ .row label[for="tab-pintura"] .service-item-content h5,
#tab-recuperacao:checked ~ .row label[for="tab-recuperacao"] .service-item-content h5,
#tab-impermeabilizacao:checked ~ .row label[for="tab-impermeabilizacao"] .service-item-content h5,
#tab-laudos:checked ~ .row label[for="tab-laudos"] .service-item-content h5 {
    color: #ffffff !important;
}

#tab-vicios:checked ~ .row label[for="tab-vicios"] .service-item-content p,
#tab-lavagem:checked ~ .row label[for="tab-lavagem"] .service-item-content p,
#tab-pintura:checked ~ .row label[for="tab-pintura"] .service-item-content p,
#tab-recuperacao:checked ~ .row label[for="tab-recuperacao"] .service-item-content p,
#tab-impermeabilizacao:checked ~ .row label[for="tab-impermeabilizacao"] .service-item-content p,
#tab-laudos:checked ~ .row label[for="tab-laudos"] .service-item-content p {
    color: rgba(255, 255, 255, 0.58) !important;
}

#tab-vicios:checked ~ .row label[for="tab-vicios"] .service-item-icon,
#tab-lavagem:checked ~ .row label[for="tab-lavagem"] .service-item-icon,
#tab-pintura:checked ~ .row label[for="tab-pintura"] .service-item-icon,
#tab-recuperacao:checked ~ .row label[for="tab-recuperacao"] .service-item-icon,
#tab-impermeabilizacao:checked ~ .row label[for="tab-impermeabilizacao"] .service-item-icon,
#tab-laudos:checked ~ .row label[for="tab-laudos"] .service-item-icon {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
}

#tab-vicios:checked ~ .row label[for="tab-vicios"] .service-item-arrow,
#tab-lavagem:checked ~ .row label[for="tab-lavagem"] .service-item-arrow,
#tab-pintura:checked ~ .row label[for="tab-pintura"] .service-item-arrow,
#tab-recuperacao:checked ~ .row label[for="tab-recuperacao"] .service-item-arrow,
#tab-impermeabilizacao:checked ~ .row label[for="tab-impermeabilizacao"] .service-item-arrow,
#tab-laudos:checked ~ .row label[for="tab-laudos"] .service-item-arrow {
    color: var(--secondary-color) !important;
}

/* --------------------------------------------------------- */
/* Right: detail panel */
/* --------------------------------------------------------- */
.service-details-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 54, 93, 0.10);
    min-height: 480px;
    position: relative;
    overflow: hidden;
}

.service-details-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: 1;
}

.service-details {
    padding: 2.5rem;
    display: none;
}

#tab-vicios:checked ~ .row .service-details-card #content-vicios,
#tab-lavagem:checked ~ .row .service-details-card #content-lavagem,
#tab-pintura:checked ~ .row .service-details-card #content-pintura,
#tab-recuperacao:checked ~ .row .service-details-card #content-recuperacao,
#tab-impermeabilizacao:checked ~ .row .service-details-card #content-impermeabilizacao,
#tab-laudos:checked ~ .row .service-details-card #content-laudos {
    display: block !important;
    animation: fadeInService 0.38s ease;
}

@keyframes fadeInService {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.service-details-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eef1f6;
}

.service-details-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.55rem;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.22);
}

.service-details-header h3 {
    margin: 0 0 0.5rem;
    color: var(--primary-color);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.25;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    background: #e8f0fe;
    color: var(--secondary-color);
    padding: 0.22rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-top: 0;
}

.service-info-section {
    margin-bottom: 1.25rem;
    padding-left: 1rem;
    border-left: 2px solid #dce8fa;
    transition: border-left-color 0.2s ease;
}

.service-info-section:hover {
    border-left-color: var(--secondary-color);
}

.info-section-title {
    margin-bottom: 0.35rem;
}

.info-badge {
    font-size: 0.67rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: none;
    padding: 0;
    border-radius: 0;
    display: inline-block;
}

.service-details-description {
    font-size: 0.93rem;
    line-height: 1.65;
    color: #4a5568;
    margin-bottom: 0;
}

.service-cta {
    text-align: center;
    margin-top: 2rem;
}

.service-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eef1f6;
}

.stat-box {
    text-align: center;
    padding: 1.25rem 1rem;
    background: linear-gradient(135deg, #f5f8ff 0%, #edf2ff 100%);
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.12);
    flex: unset;
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    margin-bottom: 0.35rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.76rem;
    color: #718096;
    font-weight: 500;
    opacity: 1;
}

/* CTA block */
.servicos-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    border-radius: 20px;
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.servicos-cta-box h4 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.servicos-cta-box p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.5rem;
}
/* ========================================================= */
/* -- CASE DE SUCESSO -- */
/* ========================================================= */
.case-study-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e9ecef;
}

.case-content {
    padding: 3rem;
}

.case-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.case-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.case-location {
    color: var(--gray-800);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.case-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-800);
    margin-bottom: 2rem;
}

.case-stats {
    margin-bottom: 2rem;
}

.stat-item-case {
    text-align: center;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.stat-number-case {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.stat-label-case {
    font-size: 0.9rem;
    color: var(--gray-800);
    opacity: 0.8;
}

.case-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-image:hover img {
    transform: scale(1.05);
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, var(--primary-color));
    padding: 2rem 1rem 1rem;
}

.case-overlay-text {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Before / After vídeos */
.case-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1.5rem 0;
    height: 100%;
    align-content: center;
}

.case-ba-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.case-ba-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    align-self: flex-start;
}

.case-ba-label--before {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.case-ba-label--after {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.case-ba-video {
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    background: #000;
}

.case-ba-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    .case-before-after {
        padding: 0 0.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .case-before-after {
        gap: 0.65rem;
        padding: 1.25rem 1.25rem 0.5rem;
    }
}

.service-executed-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--secondary-color);
}

.service-executed-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-executed-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.service-executed-card h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-executed-card p {
    color: var(--gray-800);
    opacity: 0.8;
    margin-bottom: 0;
    line-height: 1.6;
}

.results-section {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 3rem 2rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    font-weight: 500;
    color: var(--gray-800);
}

.result-item i {
    font-size: 1.2rem;
}

/* ========================================================= */
/* -- DEPOIMENTOS -- */
/* ========================================================= */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    margin: 0 1rem;
    position: relative;
    border: 1px solid #e9ecef;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2c5282);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    position: absolute;
    top: 10px;
    left: 30px;
    background: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-800);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--gray-800);
    opacity: 0.7;
    font-size: 0.9rem;
}

.testimonial-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    margin-top: 0.5rem;
}

.testimonial-google-badge .fab {
    color: #4285F4;
    font-size: 0.85rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: -30px;
}

.carousel-control-next {
    right: -30px;
}

.carousel-control-icon {
    background: none;
    color: var(--white);
    font-size: 1.2rem;
}

.credibility-section {
    background: var(--gray-100);
    border-radius: 20px;
    padding: 3rem 2rem;
}

.credibility-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.credibility-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.credibility-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.credibility-item h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.credibility-item p {
    color: var(--gray-800);
    opacity: 0.8;
    margin-bottom: 0;
}

/* ========================================================= */
/* -- GALERIA -- */
/* ========================================================= */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.gallery-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: var(--white);
}

.gallery-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-content p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.gallery-content i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.gallery-info {
    padding: 1.5rem;
    text-align: center;
}

.gallery-info h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-info span {
    color: var(--gray-800);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ========================================================= */
/* -- MVV PROFISSIONAL -- */
/* ========================================================= */
.mvv-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.mvv-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.mvv-card-professional {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.08);
    border: 1px solid rgba(74, 144, 226, 0.1);
    padding: 0;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.mvv-card-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mvv-card-professional:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(26, 54, 93, 0.15);
}

.mvv-card-professional:hover::before {
    transform: scaleX(1);
}

.mvv-header-card {
    padding: 2.5rem 2.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    color: var(--white);
    margin: 0;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.mvv-header-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 10px solid var(--primary-color);
}

.mvv-icon-professional {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.mvv-title-professional {
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mvv-content-professional {
    padding: 2.5rem;
    padding-top: 2rem;
}

.mvv-content-professional p {
    color: var(--gray-800);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

.mvv-valores-professional {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.valor-professional {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.valor-professional:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    transform: translateX(8px);
    border-left-color: var(--primary-color);
}

.valor-professional i {
    color: var(--secondary-color);
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
}

.valor-professional span {
    color: var(--gray-800);
    font-weight: 600;
    font-size: 0.95rem;
}

.mvv-badge {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6ab7ff 100%);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    margin: 0 2.5rem 2.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* ========================================================= */
/* -- CONTATO -- */
/* ========================================================= */
.contact-form {
    background: var(--gray-100);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(74, 144, 226, 0.25);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(74, 144, 226, 0.1);
}

.contact-form-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.contact-form-header h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.contact-form-header p {
    color: var(--gray-800);
    opacity: 0.8;
    margin-bottom: 0;
    font-size: 1rem;
}

.contact-form .form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.cta-whatsapp {
    background: var(--gray-100);
    padding: 3rem 2rem;
    border-radius: 20px;
}

/* ========================================================= */
/* -- FOOTER CLEAN -- */
/* ========================================================= */
.clean-footer {
    background: #1a1a1a;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.footer-content {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid #333;
}

.footer-logo-clean {
    margin-bottom: 1.5rem;
}

.footer-logo-img-clean {
    height: 100px;
    width: auto;
    filter: brightness(1.1);
}

.logo-fallback-clean {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.logo-fallback-clean i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.highlight-text {
    color: var(--secondary-color);
    font-weight: 600;
}

.social-links-clean {
    display: flex;
    gap: 0.8rem;
}

.social-links-clean a {
    width: 35px;
    height: 35px;
    background: #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links-clean a:hover {
    background: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-section {
    height: 100%;
}

.footer-title {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-title i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.2rem 0;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
}

.contact-info-clean {
    margin-bottom: 2rem;
}

.contact-item-clean {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-item-clean i {
    color: var(--secondary-color);
    width: 16px;
    text-align: center;
}

.contact-item-clean a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-clean a:hover {
    color: var(--secondary-color);
}

.contact-item-clean span {
    color: #cccccc;
}

.branches-clean {
    margin-bottom: 2rem;
}

.branch-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #333;
    font-size: 0.9rem;
}

.branch-item:last-child {
    border-bottom: none;
}

.branch-item strong {
    color: #ffffff;
    font-weight: 600;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: #ffffff !important;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
    color: #ffffff !important;
}

.phone-link i {
    color: #ffffff;
    font-size: 0.8rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #2a2a2a;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

.security-badge i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.security-badge span {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
}

/* ========================================================= */
/* -- FAQ ACCORDION -- */
/* ========================================================= */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-item:has(.show) {
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.faq-question {
    margin: 0;
    font-size: 1rem;
}

.faq-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.1rem 1.4rem;
    background: var(--white);
    border: none;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-btn:hover {
    background: #f0f6ff;
    color: var(--secondary-color);
}

.faq-btn:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

.faq-icon {
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-btn:not(.collapsed) .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.2rem 1.4rem;
    background: #f8faff;
    border-top: 1px solid #e2e8f0;
}

.faq-answer p {
    margin: 0;
    color: var(--gray-800);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ========================================================= */
/* -- SEO REGIONAL BLOCK (colapsável no rodapé) -- */
/* ========================================================= */
.footer-seo-block {
    background: #141414;
    border-top: 1px solid #2a2a2a;
    padding: 0;
}

.footer-seo-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 0;
    background: none;
    border: none;
    color: #555;
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: left;
}

.footer-seo-toggle:hover {
    color: #888;
}

.footer-seo-icon {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.footer-seo-toggle[aria-expanded="true"] .footer-seo-icon {
    transform: rotate(180deg);
}

.footer-seo-content {
    padding: 1.5rem 0 2rem;
    border-top: 1px solid #222;
}

.footer-seo-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.6rem;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0;
}

.footer-seo-content p {
    font-size: 0.7rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.footer-seo-content a {
    color: #555 !important;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-seo-content a:hover {
    color: var(--secondary-color) !important;
}

.footer-seo-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.6rem;
}

.footer-seo-list li {
    font-size: 0.7rem;
    color: #444;
    padding: 0.15rem 0;
    padding-left: 0.8rem;
    position: relative;
    line-height: 1.5;
}

.footer-seo-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #333;
}

/* --- */
.footer-bottom-clean {
    background: #111;
    padding: 1.5rem 0;
}

.footer-bottom-clean p {
    margin: 0;
    color: #888;
    font-size: 0.85rem;
}

.footer-links-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links-bottom a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--secondary-color);
}

.separator {
    color: #555;
}

/* ========================================================= */
/* -- WHATSAPP FLUTUANTE -- */
/* ========================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #25d366;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    color: var(--white);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

@keyframes pulse {
    0% { box-shadow: var(--shadow-lg); }
    50% { box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4); }
    100% { box-shadow: var(--shadow-lg); }
}

/* ========================================================= */
/* -- BOTÃO WHATSAPP GRANDE (CTA CONTATO) -- */
/* ========================================================= */
.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #25d366;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-whatsapp-large:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.btn-whatsapp-large i {
    font-size: 1.4rem;
}

/* ========================================================= */
/* -- RESPONSIVIDADE -- */
/* ========================================================= */

/* Mobile nav transparente: dropdown com fundo escuro */
@media (max-width: 991px) {
    .navbar:not(.scrolled) .navbar-collapse.show,
    .navbar:not(.scrolled) .navbar-collapse.collapsing {
        background: rgba(22, 45, 80, 0.97);
        border-radius: 14px;
        padding: 0.5rem 1rem 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
    }
}

@media (max-width: 991px) {
    .services-list {
        margin-bottom: 2rem;
        border-radius: 16px;
    }

    .service-item {
        padding: 1rem 1.25rem;
    }

    .service-details {
        padding: 1.75rem;
    }

    /* --- Timeline responsiva tablet --- */
    .process-steps__title {
        margin-top: 1rem;
        text-align: center;
    }

    /* --- Diferenciais tablet --- */
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* --- Espaçamentos gerais --- */
    .section-padding {
        padding: 3rem 0;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .mvv-section {
        padding: 3rem 0;
    }

    /* --- Hero --- */
    .hero-minimal {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-minimal__overlay {
        background: linear-gradient(
            to right,
            rgba(26, 54, 93, 0.95) 0%,
            rgba(26, 54, 93, 0.65) 25%,
            rgba(26, 54, 93, 0.15) 100%
        );
    }

    .hero-minimal__content {
        padding: 0 20px;
        text-align: center;
    }

    .hero-minimal__pretitle {
        justify-content: center;
    }

    .hero-minimal__title {
        font-size: 34px;
    }

    .hero-minimal__title-line {
        margin: 0 auto 24px auto;
    }

    .hero-minimal__description {
        font-size: 16px;
    }

    .hero-minimal__badge {
        font-size: 13px;
        padding: 10px 18px;
    }

    /* --- Seção títulos --- */
    .section-title {
        font-size: 1.8rem;
    }

    /* --- Navbar mobile --- */
    .btn-whatsapp-nav {
        display: block;
        text-align: center;
        margin: 1rem 0 0.5rem;
        padding: 0.7rem 1.5rem;
    }

    .navbar-collapse {
        padding-bottom: 1rem;
    }

    /* --- Hero CTAs mobile --- */
    .hero-minimal__ctas {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .hero-minimal__scroll {
        display: none;
    }

    /* --- Sobre section mobile --- */
    .sobre-section .row.mb-5 {
        margin-bottom: 1.5rem !important;
    }

    /* Layout horizontal: ícone à esquerda, conteúdo à direita */
    .sobre-card {
        display: grid;
        grid-template-columns: 50px 1fr;
        grid-template-rows: auto auto auto;
        column-gap: 1rem;
        row-gap: 0;
        padding: 1.25rem;
        border-radius: 14px;
        text-align: left;
    }

    .sobre-card__icon {
        grid-column: 1;
        grid-row: 1 / 4;
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
        margin-bottom: 0;
        align-self: start;
        margin-top: 0.15rem;
        flex-shrink: 0;
    }

    .sobre-card__title {
        grid-column: 2;
        font-size: 0.95rem;
        margin-bottom: 0.35rem;
    }

    .sobre-card__desc {
        grid-column: 2;
        font-size: 0.81rem;
        line-height: 1.55;
        margin-bottom: 0.65rem;
    }

    .sobre-card__list {
        grid-column: 2;
    }

    .sobre-card__list li {
        font-size: 0.8rem;
        padding: 0.3rem 0;
        gap: 0.45rem;
    }

    .sobre-statsbar {
        border-radius: 14px;
    }

    .sobre-statsbar__item strong {
        font-size: 1.7rem !important;
    }

    .sobre-statsbar__item {
        padding: 1.2rem 0.5rem !important;
    }

    .sobre-statsbar__item:not(.sobre-statsbar__item--last)::after {
        display: none;
    }

    /* --- Timeline mobile pequeno --- */
    .timeline-card {
        padding: 0.75rem !important;
    }

    /* --- Processo/diferenciais --- */
    .technical-highlights {
        padding: 2rem 1rem !important;
    }

    .technical-highlights .row > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: unset !important;
    }

    .highlight-item {
        background: rgba(255,255,255,0.1);
        border-radius: 12px;
        padding: 1rem 1.25rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }

    .highlight-item i {
        font-size: 1.75rem !important;
        margin-bottom: 0 !important;
        flex-shrink: 0;
    }

    .highlight-text {
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .highlight-text h6 {
        margin-bottom: 0.25rem !important;
        color: var(--white) !important;
    }

    .highlight-text small {
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .technical-highlights h4 {
        margin-bottom: 1.5rem !important;
        font-size: 1.2rem !important;
    }

    /* --- Sobre cards 480px --- */
    .sobre-card {
        padding: 1.75rem 1.5rem !important;
    }

    .sobre-card__icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.4rem !important;
    }

    .sobre-statsbar__item strong {
        font-size: 1.4rem !important;
    }

    .about-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.2rem !important;
        margin-bottom: 0.75rem !important;
    }

    /* --- Case de sucesso --- */
    .case-content {
        padding: 1.25rem 1rem;
    }

    .case-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem !important;
    }

    .case-badge {
        margin-bottom: 0.75rem !important;
        font-size: 0.85rem !important;
        padding: 0.4rem 1rem !important;
    }

    .case-location {
        font-size: 0.85rem !important;
        margin-bottom: 0.75rem !important;
    }

    .case-description {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.5 !important;
    }

    .case-stats {
        margin-bottom: 1rem !important;
    }

    .stat-item-case {
        padding: 0.6rem 0.5rem !important;
    }

    .stat-number-case {
        font-size: 1.6rem !important;
    }

    .stat-label-case {
        font-size: 0.75rem !important;
    }

    /* Vídeos primeiro no mobile */
    .case-study-card .col-lg-6:last-child {
        order: -1;
    }

    .case-before-after {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
        padding: 1.25rem 1.25rem 0.5rem;
        align-content: start;
    }

    .case-ba-label {
        font-size: 0.7rem;
        padding: 0.25rem 0.65rem;
        letter-spacing: 1px;
    }

    .case-image {
        height: 220px;
        margin-top: 0 !important;
    }

    /* --- Serviços executados --- */
    #projetos .row:has(.service-executed-card) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    #projetos .row:has(.service-executed-card) > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .service-executed-card {
        padding: 1.25rem 0.75rem !important;
    }

    .service-executed-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.2rem !important;
        margin-bottom: 0.75rem !important;
    }

    .service-executed-card h6 {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }

    .service-executed-card p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    /* --- Credibilidade --- */
    .credibility-section {
        padding: 1.5rem 1rem !important;
    }

    .credibility-section .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .credibility-section .row > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .credibility-item {
        padding: 1rem 0.75rem !important;
    }

    .credibility-item i {
        font-size: 1.75rem !important;
        margin-bottom: 0.5rem !important;
    }

    .credibility-item h6 {
        font-size: 0.9rem !important;
        margin-bottom: 0.25rem !important;
    }

    .credibility-item p {
        font-size: 0.8rem !important;
    }

    /* --- Depoimentos --- */
    .testimonial-card {
        padding: 2rem 1rem;
        margin: 0;
    }

    .testimonial-quote {
        left: 15px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    /* --- Resultados --- */
    .results-section {
        padding: 2rem 1rem;
    }

    /* --- Galeria --- */
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    /* --- Formulário de contato --- */
    .contact-form {
        padding: 1.5rem 1rem !important;
    }

    .contact-form-header {
        margin-bottom: 1.25rem !important;
        padding-bottom: 1rem !important;
    }

    .contact-form-icon {
        width: 46px !important;
        height: 46px !important;
        font-size: 1.2rem !important;
        margin-bottom: 0.75rem !important;
    }

    .contact-form-header h4 {
        font-size: 1.2rem !important;
        margin-bottom: 0.25rem !important;
    }

    .contact-form-header p {
        font-size: 0.85rem !important;
    }

    .contact-form .form-label {
        font-size: 0.85rem !important;
        margin-bottom: 0.3rem !important;
    }

    .contact-form .form-control,
    .contact-form .form-select {
        padding: 0.6rem 0.85rem !important;
        font-size: 0.9rem !important;
    }

    #contactForm .mb-3 {
        margin-bottom: 0.65rem !important;
    }

    #contactForm .btn-primary-custom {
        width: 100%;
        justify-content: center;
    }

    .btn-whatsapp-large {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }

    /* --- MVV --- */
    .mvv-header-card {
        padding: 1.25rem 1.25rem 1rem !important;
    }

    .mvv-icon-professional {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.4rem !important;
        margin-bottom: 0.75rem !important;
    }

    .mvv-title-professional {
        font-size: 1.2rem !important;
    }

    .mvv-content-professional {
        padding: 1.25rem !important;
        padding-top: 1rem !important;
    }

    .mvv-content-professional p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }

    .valor-professional {
        padding: 0.65rem 0.75rem !important;
    }

    .valor-professional span {
        font-size: 0.85rem !important;
    }

    .mvv-badge {
        margin: 0 1rem 1rem !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
    }

    /* --- Footer --- */
    .footer-content {
        padding: 2rem 0 1.5rem !important;
    }

    /* Colunas Serviços + Navegação lado a lado */
    .clean-footer .footer-content .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    /* Logo ocupa largura total */
    .clean-footer .footer-content .row > .col-lg-4:first-child,
    .clean-footer .footer-content .row > .col-lg-4:last-child {
        grid-column: 1 / -1;
    }

    .footer-description {
        font-size: 0.85rem !important;
    }

    .footer-title {
        font-size: 0.9rem !important;
        margin-bottom: 0.6rem !important;
    }

    .footer-links li {
        margin-bottom: 0.5rem !important;
    }

    .footer-links a {
        font-size: 0.82rem !important;
    }

    .contact-item-clean {
        font-size: 0.82rem !important;
        margin-bottom: 0.4rem !important;
    }

    .branches-clean {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-top: 0.75rem;
    }

    .branch-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem !important;
        font-size: 0.8rem !important;
    }

    .phone-link {
        align-self: flex-start;
        font-size: 0.8rem !important;
    }

    .security-badge {
        font-size: 0.78rem !important;
        padding: 0.5rem 0.75rem !important;
        margin-top: 0.75rem !important;
    }

    .footer-links-bottom {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .social-links-clean {
        justify-content: center;
    }

    /* --- WhatsApp flutuante --- */
    .whatsapp-float a span {
        display: none;
    }

    .whatsapp-float a {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }

    /* --- Serviços --- */
    .service-item {
        padding: 0.85rem 1rem !important;
        gap: 0.75rem !important;
    }

    .service-item::before {
        display: none;
    }

    .service-item-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.95rem !important;
        border-radius: 10px !important;
    }

    .service-item-content h5 {
        font-size: 1rem !important;
    }

    .service-item-content p {
        font-size: 0.86rem !important;
    }

    .services-list {
        margin-bottom: 1rem !important;
    }

    .service-details {
        padding: 1.25rem !important;
    }

    .service-details-header {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 0.75rem;
        margin-bottom: 1rem !important;
    }

    .service-details-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
        flex-shrink: 0;
    }

    .service-details-header h3 {
        font-size: 1.1rem !important;
        margin: 0 !important;
    }

    .service-info-section {
        margin-bottom: 0.75rem !important;
    }

    .service-details-description {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0 !important;
    }

    .service-stats {
        gap: 0.5rem !important;
        margin-top: 1rem !important;
    }

    .stat-box {
        padding: 0.75rem 0.5rem !important;
    }

    .stat-number {
        font-size: 1.5rem !important;
    }

    .stat-label {
        font-size: 0.75rem !important;
    }
}

/* ========================================================= */
/* -- TELAS MUITO PEQUENAS (< 480px) -- */
/* ========================================================= */
@media (max-width: 480px) {
    /* Hero */
    .hero-minimal__title {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero-minimal__description {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .hero-minimal__badge {
        font-size: 12px;
        padding: 8px 14px;
    }

    .hero-minimal__content {
        padding: 0 16px;
    }

    /* Títulos */
    .section-title {
        font-size: 1.5rem;
    }

    /* Botões */
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.8rem 1.4rem;
        font-size: 0.9rem;
    }

    /* Case */
    .case-study-card {
        border-radius: 16px;
    }

    .case-content {
        padding: 1.25rem 1rem 1.25rem !important;
    }

    .case-title {
        font-size: 1.15rem !important;
    }

    .case-before-after {
        padding: 1.25rem 1rem 0.75rem;
    }

    .case-image {
        height: 180px !important;
    }

    /* Depoimentos */
    .testimonial-text {
        font-size: 0.95rem;
    }

    /* Formulário */
    .contact-form {
        padding: 1.5rem 1rem;
    }

    /* Stats */
    .stat-number {
        font-size: 1.5rem;
    }

    /* Galeria — 1 coluna no celular pequeno */
    .gallery-item {
        width: 100%;
        max-width: 100%;
    }

    /* Navbar logo */
    .navbar-logo {
        height: 34px;
    }

    /* FAQ */
    .faq-btn {
        font-size: 0.85rem;
        padding: 0.9rem 1rem;
    }

    /* Diferenciais — 1 coluna */
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .diferencial-card {
        padding: 1.25rem 0.75rem;
    }
}

/* ========================================================= */
/* -- CORREÇÕES MOBILE ESPECÍFICAS -- */
/* ========================================================= */

/* --- Processo/Metodologia mobile --- */
@media (max-width: 991px) {
    .processo-steps-card {
        padding: 1.5rem 1.25rem;
        margin-top: 0;
    }

    .processo-video-caption {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .processo-video-glow {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Reduz min-height do painel de detalhe dos serviços */
    .service-details-card {
        min-height: auto !important;
    }

    /* Processo — caption mais compacto */
    .processo-video-caption {
        gap: 0.75rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }

    .processo-video-caption__icon {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .processo-video-caption__text h6 {
        font-size: 0.85rem;
    }

    .processo-video-caption__text p {
        font-size: 0.78rem;
    }

    /* Processo — steps card mobile */
    .processo-steps-card {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    .process-steps__title {
        font-size: 0.88rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Timeline compacta no mobile */
    .timeline-step {
        gap: 0.65rem;
        margin-bottom: 0.5rem;
    }

    .timeline-step:not(.timeline-step--last) .timeline-marker::after {
        left: 15px;
    }

    .timeline-number {
        width: 32px;
        height: 32px;
        font-size: 0.78rem;
    }

    .timeline-card {
        padding: 0.6rem 0.7rem;
        gap: 0.55rem;
    }

    .timeline-card__icon {
        width: 28px;
        height: 28px;
        font-size: 0.72rem;
        flex-shrink: 0;
    }

    .timeline-card__title {
        font-size: 0.84rem;
        margin-bottom: 0.15rem;
    }

    .timeline-card__desc {
        font-size: 0.76rem;
        line-height: 1.35;
    }

    /* Diferenciais mobile */
    .diferenciais-grid {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        gap: 0.75rem;
    }

    .diferencial-card {
        padding: 1.1rem 0.65rem;
    }

    .diferencial-card__icon {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .diferencial-card__title {
        font-size: 0.82rem;
    }

    .diferencial-card__desc {
        font-size: 0.75rem;
    }

    /* CTA serviços */
    .servicos-cta-box {
        padding: 1.5rem 1rem;
    }

    .servicos-cta-box h4 {
        font-size: 1.1rem;
    }

    /* Depoimentos — avatar e conteúdo em coluna no mobile */
    .testimonial-card .col-lg-2,
    .testimonial-card .col-md-3 {
        margin-bottom: 1rem;
    }

    .testimonial-avatar {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.4rem !important;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Galeria — 1 coluna em mobile */
    #galleryGrid .col-md-6 {
        width: 100%;
    }

    /* FAQ — texto menor */
    .faq-btn {
        font-size: 0.88rem;
        line-height: 1.4;
        padding: 1rem 1rem;
    }

    .faq-answer p {
        font-size: 0.88rem;
    }

    /* Navbar — logo e botão */
    .navbar-logo {
        height: 38px !important;
    }

    /* Section title — linha decorativa no mobile */
    .section-title::after {
        width: 50px;
    }

    /* Botão outline nos serviços */
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
        display: flex;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    /* Processo diferenciais — 1 coluna em tela muito pequena */
    .diferenciais-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Seção sobre — stats bar */
    .sobre-statsbar__item strong {
        font-size: 1.35rem !important;
    }

    /* Formulário — colunas do formulário empilhadas */
    #contactForm .col-md-6 {
        width: 100%;
    }
}