/* =========================================
   RENOSTTER CLIMATIZAÇÃO — PREMIUM STYLES
   Paleta: Azul #00AEEF, Laranja #FF6B00
   ========================================= */

:root {
    --blue: #00AEEF;
    --blue-dark: #0088CC;
    --blue-light: #E8F8FF;
    --orange: #FF6B00;
    --orange-dark: #E55A00;
    --dark: #0A0E1A;
    --dark-2: #111827;
    --dark-3: #1F2937;
    --gray: #6B7280;
    --gray-light: #F3F4F6;
    --white: #FFFFFF;
    --radius: 16px;
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-express: cubic-bezier(0.85, 0, 0.15, 1);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: 0.4s var(--ease-smooth);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad {
    padding: 100px 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue-light), #FFF3E8);
    color: var(--blue-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 174, 239, 0.2);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
}

.section-desc {
    max-width: 600px;
    margin: 16px auto 0;
    color: var(--gray);
    font-size: 1.05rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--blue), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 107, 0, 0.4);
    transition: 0.5s var(--ease-spring);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px) scale(1.02);
    transition: 0.4s var(--ease-spring);
}

.btn-nav {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
}

.btn-nav:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
    transition: 0.4s var(--ease-spring);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    margin-top: 16px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BD5C;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: 0.5s var(--ease-spring);
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background-color: #000000;
    border-bottom: 1px solid #111;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo .logo-img {
    height: 60px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-links a:not(.btn-nav):hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

/* =========================================
   HERO
   ========================================= */
.hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    background-color: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero::before,
.hero::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 174, 239, 0.15);
    border: 1px solid rgba(0, 174, 239, 0.3);
    color: var(--blue);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeInDown 0.6s ease both;
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 40px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px 40px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.7s ease 0.4s both;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
}

.trust-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-top: 4px;
    white-space: nowrap;
}

.trust-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-dot {
    width: 12px;
    height: 12px;
    background: var(--blue);
    border-radius: 50%;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

/* =========================================
   NÚMEROS
   ========================================= */
.numeros {
    background: var(--gray-light);
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.numero-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 174, 239, 0.08);
}

.numero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 174, 239, 0.15);
    border-color: rgba(0, 174, 239, 0.3);
}

.numero-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.numero-valor {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.numero-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* =========================================
   SERVIÇOS
   ========================================= */
.servicos {
    background: white;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.servico-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.05), rgba(255, 107, 0, 0.05));
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
    transform: scale(0.95);
    border-radius: var(--radius);
}

.servico-card:hover {
    background: #ffffff;
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 174, 239, 0.12), 0 8px 16px rgba(255, 107, 0, 0.08);
    transform: translateY(-8px) scale(1.02);
    transition: 0.6s var(--ease-spring);
}

.servico-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.highlight-card {
    background: linear-gradient(135deg, #ffffff, #f4fbff);
    border: 1px solid rgba(0, 174, 239, 0.3);
}

.highlight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 2px;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.highlight-card:hover::after {
    opacity: 1;
}

.servico-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.servico-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: inline-block;
    transition: all 0.4s ease;
}

.servico-card:hover .servico-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(0, 174, 239, 0.4));
    transition: 0.5s var(--ease-spring);
}

.servico-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.servico-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

.servicos-cta {
    text-align: center;
    margin-top: 48px;
}

/* =========================================
   PORTFÓLIO
   ========================================= */
.portfolio {
    background: var(--dark);
}

.portfolio .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--blue);
}

.portfolio .section-title {
    color: white;
}

.portfolio .section-desc {
    color: rgba(255, 255, 255, 0.5);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.portfolio-item.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
    width: fit-content;
}

.portfolio-overlay p {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

/* =========================================
   DIFERENCIAIS
   ========================================= */
.diferenciais {
    background: var(--gray-light);
}

.diferenciais-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.diferenciais-desc {
    color: var(--gray);
    font-size: 1.05rem;
    margin: 16px 0 32px;
}

.diferenciais-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.diferenciais-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.diferenciais-list li:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-lg);
}

.dif-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.diferenciais-list strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.diferenciais-list span {
    font-size: 0.875rem;
    color: var(--gray);
}

.diferenciais-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.visual-card {
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--shadow);
}

.visual-card .visual-icon {
    font-size: 1.8rem;
}

.visual-card strong {
    font-size: 1.3rem;
    font-weight: 800;
    display: block;
}

.visual-card span {
    font-size: 0.82rem;
    opacity: 0.7;
}

.main-card {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--dark), var(--dark-3));
    color: white;
}

.accent-card {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
}

.accent-card-2 {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
}

.accent-card-3 {
    background: linear-gradient(135deg, #7C3AED, #5B21B6);
    color: white;
    grid-column: span 1;
}

/* =========================================
   CONTATO
   ========================================= */
.contato {
    background: white;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contato-card {
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.contato-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contato-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contato-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contato-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

.contato-number {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    color: var(--dark) !important;
    margin-bottom: 6px !important;
}

.whatsapp-card {
    border-top: 4px solid #25D366;
}

.horario-list {
    margin: 16px 0;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.9rem;
}

.horario-time {
    font-weight: 700;
    color: var(--dark);
}

.horario-time.closed {
    color: var(--gray);
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 12px;
}

.status-badge.open {
    background: #D1FAE5;
    color: #065F46;
}

.status-badge.closed {
    background: #FEE2E2;
    color: #991B1B;
}

.rede-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.rede-link:hover {
    color: var(--blue);
    gap: 14px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--dark);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 36px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links h4 {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--blue);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 104px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
    animation: pulse 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.3;
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   PORTFÓLIO (CARROSSEL)
   ========================================= */

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.filter-btn {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
    border-radius: 50px;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    background: #ffffff;
    color: var(--blue);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 174, 239, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--blue), var(--orange));
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.4);
    transform: scale(1.05);
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.portfolio-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 5px 40px;
    scrollbar-width: none;
    /* Firefox */
}

.portfolio-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.portfolio-card {
    flex: 0 0 calc(85% - 24px);
    scroll-snap-align: center;
    position: relative;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.portfolio-card img,
.portfolio-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 174, 239, 0.3);
    border-color: var(--blue);
}

.portfolio-card:hover img,
.portfolio-card:hover video {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 17, 23, 0.95) 10%, rgba(13, 17, 23, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .card-overlay {
    opacity: 1;
}

.card-info {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-card:hover .card-info {
    transform: translateY(0);
}

.card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 174, 239, 0.15);
    color: var(--blue);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-info h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.card-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-card-cta {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-card-cta:hover {
    background: var(--blue-dark);
    transform: scale(1.05);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-nav:hover {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 0 15px rgba(0, 174, 239, 0.5);
}

.carousel-nav.prev {
    left: -10px;
}

.carousel-nav.next {
    right: -10px;
}

.portfolio-footer {
    text-align: center;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .numeros-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diferenciais-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .portfolio-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .section-pad {
        padding: 64px 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(10, 14, 26, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }

    .trust-divider {
        width: 60px;
        height: 1px;
    }

    .numeros-grid {
        grid-template-columns: 1fr 1fr;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item.large {
        grid-column: span 1;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .diferenciais-visual {
        grid-template-columns: 1fr;
    }

    .main-card,
    .accent-card-3 {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {
    .carousel-container {
        padding: 0;
    }

    .portfolio-carousel {
        padding: 20px 20px 40px;
        gap: 16px;
    }

    .portfolio-card {
        flex: 0 0 85%;
        height: 400px;
    }

    .carousel-nav {
        display: none;
    }

    .card-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(13, 17, 23, 0.95) 20%, transparent 100%);
    }

    .card-info {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .numeros-grid {
        grid-template-columns: 1fr;
    }

    .numero-valor {
        font-size: 2.2rem;
    }

    .trust-item {
        padding: 0 16px;
    }

    .hero-trust {
        padding: 20px;
    }
}

/* =========================================
   PORTFOLIO TABS
   ========================================= */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.ptab {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.ptab:hover {
    background: rgba(0, 174, 239, 0.2);
    color: var(--blue);
    border-color: var(--blue);
}

.ptab.active {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(0, 174, 239, 0.4);
}

/* =========================================
   SEÇÃO AGENDAMENTO — GOOGLE CALENDAR
   ========================================= */
.agendar {
    background: linear-gradient(135deg, #F8FAFF 0%, #EBF5FF 50%, #FFF8F3 100%);
}

.agendar-container {
    max-width: 860px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    border: 1px solid rgba(0, 174, 239, 0.1);
}

/* ─── Steps bar ─── */
.steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 40px 24px;
    background: linear-gradient(135deg, var(--dark), var(--dark-3));
    gap: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.45;
    transition: var(--transition);
}

.step.active {
    opacity: 1;
}

.step.done {
    opacity: 0.75;
}

.step span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.step.active span {
    background: linear-gradient(135deg, var(--blue), var(--orange));
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(0, 174, 239, 0.5);
}

.step.done span {
    background: rgba(0, 174, 239, 0.3);
    border-color: var(--blue);
}

.step p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.step.active p {
    color: white;
}

.step-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 22px;
    min-width: 40px;
    max-width: 80px;
}

/* ─── Form Steps ─── */
.form-step {
    display: none;
    padding: 44px 48px;
    animation: fadeInUp 0.35s ease both;
}

.form-step.active {
    display: block;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 28px;
    text-align: center;
}

/* ─── Serviço select grid ─── */
.servico-select-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.servico-option {
    cursor: pointer;
}

.servico-option input {
    display: none;
}

.servico-opt-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 12px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-light);
    background: var(--gray-light);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.servico-opt-card:hover {
    border-color: var(--blue);
    background: var(--blue-light);
}

.servico-opt-card.selected {
    border-color: var(--blue);
    background: var(--blue-light);
    box-shadow: 0 4px 16px rgba(0, 174, 239, 0.2);
}

.soc-icon {
    font-size: 1.8rem;
}

.servico-opt-card span:not(.soc-icon) {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark);
}

.servico-opt-card small {
    font-size: 0.65rem;
    color: var(--gray);
}

/* ─── Campos ─── */
.datetime-grid,
.dados-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-group.full {
    grid-column: span 2;
}

.field-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.field-input {
    padding: 13px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    background: white;
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.field-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.12);
}

textarea.field-input {
    resize: vertical;
    min-height: 90px;
}

/* ─── Step Navigation ─── */
.step-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    padding-top: 8px;
}

.btn-next {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    border: none;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 174, 239, 0.35);
}

.btn-next:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 174, 239, 0.5);
}

.btn-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-back {
    background: transparent;
    color: var(--gray);
    border: 2px solid var(--gray-light);
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}

.btn-back:hover {
    border-color: var(--gray);
    color: var(--dark);
}

/* ─── Resumo ─── */
.resumo-card {
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 28px;
    margin-bottom: 28px;
    border: 1px solid rgba(0, 174, 239, 0.12);
}

.resumo-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    gap: 16px;
}

.resumo-row:last-child {
    border-bottom: none;
}

.resumo-key {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    min-width: 120px;
}

.resumo-val {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    text-align: right;
}

/* ─── Confirm actions ─── */
.confirm-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.btn-calendar {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #4285F4, #1565C0);
    color: white;
    border: none;
    padding: 15px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(66, 133, 244, 0.4);
    min-width: 240px;
}

.btn-calendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(66, 133, 244, 0.55);
}

.btn-whatsapp-confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    border: none;
    padding: 15px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-confirm:hover {
    background: #1EAE58;
    transform: translateY(-2px);
}

.confirm-note {
    font-size: 0.78rem;
    color: var(--gray);
    text-align: center;
    margin-top: 4px;
}

/* ─── Sucesso ─── */
.success-content {
    text-align: center;
    padding: 20px 0 8px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.success-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.success-content p {
    color: var(--gray);
    max-width: 480px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .form-step {
        padding: 28px 24px;
    }

    .servico-select-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .datetime-grid,
    .dados-grid {
        grid-template-columns: 1fr;
    }

    .field-group.full {
        grid-column: span 1;
    }

    .confirm-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-calendar {
        min-width: unset;
    }

    .steps-bar {
        padding: 24px 20px 18px;
        gap: 0;
    }

    .step p {
        display: none;
    }

    .step-line {
        min-width: 20px;
    }
}

.footer-logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
}

/* =========================================
   MARCAS PARCEIRAS (INFINITE CAROUSEL)
   ========================================= */
.marcas-parceiras {
    overflow: hidden;
}

.marcas-carrossel {
    position: relative;
    width: 100%;
    /* Masks out the edges for a fading effect */
    -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
    mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
}

.marcas-track {
    display: flex;
    animation: scroll-marcas 30s linear infinite;
    width: fit-content;
}

.marcas-track:hover {
    animation-play-state: paused;
}

.marca-item {
    flex: 0 0 auto;
    margin: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
}

.marca-item img {
    height: 50px;
    width: auto;
    max-width: 100%;
    transition: var(--transition);
}

.marca-item:hover img {
    transform: scale(1.05);
}

@keyframes scroll-marcas {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marca-item {
        margin: 0 20px;
        width: 110px;
    }

    .marca-item img {
        height: 40px;
    }
}

/* =========================================
   SCROLL REVEAL & MICROINTERACTIONS
   ========================================= */
.reveal-text-container {
    overflow: hidden;
    vertical-align: top;
    display: inline-flex;
}

.reveal-text {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.8s var(--ease-express);
}

.reveal-text.active {
    transform: translateY(0);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   PINTURA DE EQUIPAMENTO (BANNER & MODAL)
   ========================================= */

.banner-pintura {
    margin-top: 40px;
    background: linear-gradient(135deg, #0A0E1A 0%, #1A1F35 100%);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}

.banner-pintura:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 174, 239, 0.15);
}

.banner-pintura::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,90,95,0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.pintura-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF5A5F, #E53E3E);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(255, 90, 95, 0.4);
}

.banner-pintura-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(to right, #FFF, #A0AEC0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-pintura-content p {
    color: #CBD5E0;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.pintura-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pintura-features li {
    font-size: 0.9rem;
    color: #E2E8F0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-pintura-cta {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 174, 239, 0.4);
}

.btn-pintura-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 174, 239, 0.6);
}

.banner-pintura-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pintura-mockup {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 800 300" xmlns="http://www.w3.org/2000/svg"><path d="M100,50 Q100,20 130,20 L670,20 Q700,20 700,50 L700,250 Q700,280 670,280 L130,280 Q100,280 100,250 Z" fill="%232D3748"/><rect x="130" y="80" width="540" height="20" rx="10" fill="%231A202C"/><rect x="130" y="120" width="540" height="15" rx="5" fill="%231A202C"/><rect x="130" y="150" width="540" height="15" rx="5" fill="%231A202C"/><circle cx="650" cy="50" r="10" fill="%2348BB78"/></svg>') no-repeat center center;
    background-size: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    animation: float-ac 6s ease-in-out infinite;
}

@keyframes float-ac {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.pintura-extra-desc {
    margin-top: 32px;
    padding: 24px;
    background: rgba(0, 174, 239, 0.03);
    border-left: 4px solid var(--blue);
    border-radius: 0 12px 12px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Modal do Simulador */
.pintura-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.pintura-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.pintura-modal-content {
    background: var(--card-bg);
    width: 90%;
    max-width: 1000px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    transform: scale(0.95) translateY(20px);
    transition: all 0.4s var(--ease-spring);
    border: 1px solid rgba(255,255,255,0.05);
}

.pintura-modal-overlay.active .pintura-modal-content {
    transform: scale(1) translateY(0);
}

.pm-close {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.pm-close:hover {
    background: var(--blue);
}

.pm-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

.pm-visualizer {
    background: radial-gradient(circle, #2A3143 0%, #101524 100%);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pm-stage {
    width: 100%;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.ac-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6));
    transition: transform 0.5s ease;
}

.ac-svg:hover {
    transform: rotateX(5deg) rotateY(-5deg);
}

.ac-body {
    transition: fill 0.6s ease;
}

.pm-controls {
    padding: 40px;
    background: white;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pm-controls h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.pm-controls p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.pm-swatches {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.swatch {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--sw-color);
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.swatch::after {
    content: '';
    position: absolute;
    top: -6px; left: -6px; right: -6px; bottom: -6px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: var(--transition);
}

.swatch:hover {
    transform: scale(1.15);
}

.swatch.active::after {
    border-color: var(--blue);
}

.pm-promo {
    background: linear-gradient(135deg, #FFF5F5, #FFED4A);
    border: 2px dashed #FF5A5F;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
    animation: fadeInPromo 0.5s ease forwards;
}

.pm-promo.hidden {
    display: none;
}

@keyframes fadeInPromo {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pm-promo span {
    display: block; font-size: 0.8rem; font-weight: 700; color: #E53E3E; margin-bottom: 8px;
}

.pm-promo strong {
    display: block; font-size: 1.5rem; letter-spacing: 2px; color: var(--dark); margin-bottom: 4px;
}

.pm-cta-btn {
    width: 100%;
    padding: 16px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 174, 239, 0.3);
}

.pm-cta-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.pm-hint {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 12px;
    margin-bottom: 0 !important;
}

@media (max-width: 900px) {
    .banner-pintura { grid-template-columns: 1fr; text-align: center; }
    .pintura-features { text-align: left; }
    .pm-layout { grid-template-columns: 1fr; }
    .pm-visualizer { padding: 40px 20px; }
    .ac-svg { max-width: 80%; }
}

@media (max-width: 600px) {
    .pintura-features { grid-template-columns: 1fr; }
    .ac-svg { max-width: 100%; }
}
/* =========================================
   VIDEO GALLERY (PREMIUM CAROUSEL)
   ========================================= */
.video-gallery-section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
    background: linear-gradient(to bottom, var(--dark), #0f172a);
}

.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 60px;
}

.video-gallery-carousel {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0 40px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scroll-behavior: smooth;
    cursor: grab;
}

.video-gallery-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.video-gallery-carousel:active {
    cursor: grabbing;
}

.carousel-item {
    flex: 0 0 320px;
    scroll-snap-align: center;
}

.video-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.6s var(--ease-smooth);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 174, 239, 0.3);
    border-color: rgba(0, 174, 239, 0.4);
}

.video-card .video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
}

.video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-info {
    padding: 32px 24px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.video-card:hover .video-info {
    transform: translateY(0);
}

.video-info h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

/* Fallback Watch on YT */
.watch-on-yt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.watch-on-yt:hover {
    background: var(--blue);
    border-color: transparent;
    transform: translateX(4px);
}

/* Nav Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s var(--ease-spring);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--blue);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 174, 239, 0.5);
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 20px;
    }
    
    .carousel-btn {
        display: none; /* Swipe is better on mobile */
    }
    
    .carousel-item {
        flex: 0 0 280px;
    }
    
    .video-gallery-carousel {
        gap: 20px;
    }
    
    .video-info {
        opacity: 1;
        transform: none;
    }
}


/* =========================================
   MOBILE: LOGO VÍDEO → IMAGEM ESTÁTICA
   ========================================= */
@media (max-width: 768px) {
    .logo-img {
        display: none;
    }
    .logo-img-static {
        display: block !important;
    }
    /* Empurrar WhatsApp flutuante acima do chat no mobile */
    .floating-whatsapp {
        bottom: 104px;
        right: 20px;
    }
    .chat-toggle-btn {
        bottom: 28px;
        right: 20px;
    }
}
.logo-img-static {
    display: none;
    height: 44px;
    width: auto;
}


/* =========================================
   PWA INSTALL BANNER
   ========================================= */
.pwa-install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    border-top: 1px solid rgba(0, 174, 239, 0.3);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 8000;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-smooth);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}
.pwa-install-banner.visible {
    transform: translateY(0);
}
.pwa-install-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
}
.pwa-install-text {
    flex: 1;
}
.pwa-install-text strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
}
.pwa-install-text span {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}
.pwa-install-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.pwa-btn-install {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
}
.pwa-btn-install:hover { background: var(--blue-dark); }
.pwa-btn-dismiss {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
}
.pwa-btn-dismiss:hover { color: #fff; }


/* =========================================
   CALCULADORA DE CUSTO
   ========================================= */
.calculadora {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}
.calc-wrapper {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 48px;
    max-width: 860px;
    margin: 0 auto;
    backdrop-filter: blur(12px);
}
.calc-steps {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.calc-step-group {
    flex: 1;
    min-width: 180px;
}
.calc-step-group label {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.calc-select {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: 0.3s;
}
.calc-select:focus {
    outline: none;
    border-color: var(--blue);
    background-color: rgba(0,174,239,0.08);
}
.calc-select option {
    background: var(--dark-2);
    color: #fff;
}
.calc-qty-group {
    display: flex;
    align-items: center;
    gap: 12px;
}
.calc-qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    flex-shrink: 0;
    line-height: 1;
}
.calc-qty-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
}
.calc-qty-val {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    min-width: 28px;
    text-align: center;
}
.calc-result {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.calc-price-box {
    flex: 1;
    min-width: 200px;
}
.calc-price-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 6px;
}
.calc-price-value {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.calc-price-note {
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    margin-top: 4px;
}
.calc-disclaimer {
    text-align: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem;
    margin-top: 20px;
}
@media (max-width: 640px) {
    .calc-wrapper { padding: 28px 20px; }
    .calc-steps { gap: 20px; }
    .calc-result { flex-direction: column; align-items: flex-start; }
}


/* =========================================
   ANTES / DEPOIS — SLIDER
   ========================================= */
.antes-depois {
    background: var(--dark-2);
}
.ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 8px;
}
.ba-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.06);
}
.ba-card .ba-label-title {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    white-space: nowrap;
    z-index: 5;
    pointer-events: none;
}
.ba-slider-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}
.ba-img-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ba-img-before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inset(0 50% 0 0);
    filter: grayscale(90%) brightness(0.65) sepia(20%);
    transition: clip-path 0s;
}
.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
}
.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    pointer-events: none;
}
.ba-handle svg { color: var(--dark); }
.ba-label-before,
.ba-label-after {
    position: absolute;
    bottom: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    pointer-events: none;
    z-index: 4;
}
.ba-label-before {
    left: 12px;
    background: rgba(0,0,0,0.6);
    color: rgba(255,255,255,0.85);
}
.ba-label-after {
    right: 12px;
    background: var(--blue);
    color: #fff;
}
@media (max-width: 600px) {
    .ba-grid { grid-template-columns: 1fr; }
}


/* =========================================
   GOOGLE REVIEWS / BOTÕES E MODAL
   ========================================= */
.btn-google-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff !important;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.btn-google-footer:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 174, 239, 0.5);
    transform: scale(1.02);
}

.google-review-success-wrapper {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.review-success-p {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.btn-google-review-success {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: #374151 !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: 0.4s var(--ease-spring);
    text-decoration: none;
}
.btn-google-review-success:hover {
    background: #f9fafb;
    border-color: rgba(66, 133, 244, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.12);
}

/* Modal de Avaliação do Google (Gatilho Chatbot) */
@keyframes googleFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes googleSlideIn {
    from { transform: scale(0.9) translateY(20px); }
    to { transform: scale(1) translateY(0); }
}

.google-review-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 15, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 11000;
}

/* Quando o display mudar para flex via JS, a animação do modal ativa */
.google-review-modal-overlay[style*="display: flex"],
.google-review-modal-overlay[style*="display:flex"] {
    animation: googleFadeIn 0.3s forwards;
}

.google-review-modal-box {
    background: rgba(30, 30, 47, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 90%;
    max-width: 480px;
    padding: 36px 30px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 
                0 0 40px rgba(0, 174, 239, 0.12);
    text-align: center;
    transform: scale(0.9) translateY(20px);
}

.google-review-modal-overlay[style*="display: flex"] .google-review-modal-box,
.google-review-modal-overlay[style*="display:flex"] .google-review-modal-box {
    animation: googleSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.google-review-btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}
.google-review-btn-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.google-review-modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.google-review-modal-header svg {
    filter: drop-shadow(0 4px 10px rgba(66, 133, 244, 0.3));
}
.google-review-modal-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.google-review-modal-body p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 16px 0;
}
.google-review-modal-body p:last-of-type {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.55);
}

.google-review-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.btn-google-modal-confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8A00 100%);
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
}
.btn-google-modal-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.45);
    background: linear-gradient(135deg, #FF8A00 0%, #FFA500 100%);
}
.btn-google-modal-cancel {
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}
.btn-google-modal-cancel:hover {
    color: rgba(255, 255, 255, 0.8);
}


/* =========================================
   MAPA DE ATENDIMENTO
   ========================================= */
.mapa-atendimento {
    background: var(--dark-2);
}
.mapa-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
}
#mapa-leaflet {
    height: 440px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
}
.mapa-info {
    padding: 8px 0;
}
.mapa-info h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}
.mapa-regioes {
    list-style: none;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mapa-regioes li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}
.mapa-regioes li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
}
/* Botão de geolocalização */
.btn-geolocalizacao {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,174,239,0.12);
    border: 1px solid rgba(0,174,239,0.35);
    color: var(--blue);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 16px;
    transition: background 0.2s, transform 0.2s;
    width: 100%;
    justify-content: center;
}
.btn-geolocalizacao:hover:not(:disabled) {
    background: rgba(0,174,239,0.22);
    transform: translateY(-1px);
}
.btn-geolocalizacao:disabled { opacity: 0.5; cursor: wait; }

/* Botões de ação nos review cards */
.review-actions {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.07);
    flex-wrap: wrap;
}
.review-ver-google,
.review-responder {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    padding: 5px 12px;
    transition: background 0.2s, color 0.2s;
}
.review-ver-google {
    color: var(--blue);
    border: 1px solid rgba(0,174,239,0.25);
    background: rgba(0,174,239,0.06);
}
.review-ver-google:hover {
    background: rgba(0,174,239,0.16);
}
.review-responder {
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
}
.review-responder:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
/* Foto de perfil real do Google */
.review-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
/* Link do nome do autor */
.review-author-link {
    color: inherit;
    text-decoration: none;
}
.review-author-link:hover strong { text-decoration: underline; }

/* Avatar de foto real do Google */
.review-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Botão secundário outline */
.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.75);
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.btn-secondary-outline:hover { border-color: rgba(255,255,255,0.55); color: #fff; }

.mapa-cep-check {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
}
.mapa-cep-check label {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.cep-input-row {
    display: flex;
    gap: 8px;
}
.cep-input {
    flex: 1;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: #fff;
    padding: 10px 14px;
    font-size: 0.95rem;
    transition: 0.3s;
}
.cep-input:focus {
    outline: none;
    border-color: var(--blue);
}
.cep-btn {
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}
.cep-btn:hover { background: var(--blue-dark); }
.cep-result {
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    min-height: 20px;
}
.cep-result.ok { color: #4ade80; }
.cep-result.fail { color: #f87171; }
@media (max-width: 900px) {
    .mapa-inner {
        grid-template-columns: 1fr;
    }
    #mapa-leaflet { height: 320px; }
}


/* =========================================
   SLOTS INDICATOR (Agendamento)
   ========================================= */
.slots-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid currentColor;
    opacity: 0.9;
}
.slots-normal  { color: #4ade80; border-color: rgba(74,222,128,0.3); background: rgba(74,222,128,0.08); }
.slots-medio   { color: #fbbf24; border-color: rgba(251,191,36,0.3);  background: rgba(251,191,36,0.08); }
.slots-urgente { color: #f87171; border-color: rgba(248,113,113,0.3); background: rgba(248,113,113,0.08); animation: pulse 1.5s ease-in-out infinite; }


/* =========================================
   LITE-YOUTUBE EMBED (Portfolio)
   ========================================= */
.yt-lite-wrap {
    cursor: pointer;
}
.yt-lite-thumb {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: filter 0.3s;
}
.yt-lite-wrap:hover .yt-lite-thumb {
    filter: brightness(0.75);
}
.yt-lite-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2;
    transition: transform 0.2s;
}
.yt-lite-wrap:hover .yt-lite-play {
    transform: translate(-50%, -50%) scale(1.1);
}


/* =========================================
   CARROSSEL SWIPER — Canal Renostter
   ========================================= */

/* Container externo */
#youtube-carousel-3cols {
    outline: none;
    position: relative;
}

/* ── Swiper — tema Renostter ── */
.yc3-swiper {
    padding-bottom: 52px !important; /* espaço para os dots */
    overflow: hidden;
}

/* Botões prev / next */
.yc3-swiper .yc3-prev,
.yc3-swiper .yc3-next {
    width:  44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 20, 38, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    top: 38%;
}
.yc3-swiper .yc3-prev::after,
.yc3-swiper .yc3-next::after {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}
.yc3-swiper .yc3-prev:hover,
.yc3-swiper .yc3-next:hover {
    background: var(--orange, #ff8c00);
    border-color: transparent;
}
.yc3-swiper .swiper-button-disabled {
    opacity: 0.28 !important;
    pointer-events: none;
}

/* Dots de paginação */
.yc3-pagination {
    bottom: 12px !important;
}
.yc3-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
    transition: background 0.3s, width 0.3s, border-radius 0.3s;
}
.yc3-swiper .swiper-pagination-bullet-active {
    background: var(--blue, #00AEEF);
    width: 24px;
    border-radius: 4px;
}

/* ── Card (slide) ── */
.yc3-slide {
    background: var(--dark-2, #0f1a2e);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
    height: auto;
}
.yc3-slide:hover {
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

/* Área do thumbnail / player — portrait 9:16 */
.yc3-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    cursor: pointer;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    background: #000;
}
.yc3-thumb-wrap .yt-lite-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s, transform 0.45s;
}
.yc3-thumb-wrap:hover .yt-lite-thumb {
    filter: brightness(0.6);
    transform: scale(1.05);
}
.yc3-thumb-wrap .yt-lite-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
    transition: transform 0.2s;
}
.yc3-thumb-wrap:hover .yt-lite-play {
    transform: translate(-50%, -50%) scale(1.18);
}

/* Painel de info */
.yc3-info {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    background: var(--dark-2, #0f1a2e);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.yc3-title {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
.yc3-date {
    color: var(--medium-gray, #8892a4);
    font-size: 0.74rem;
}
.yc3-yt-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue, #00AEEF);
    font-size: 0.78rem;
    text-decoration: none;
    margin-top: auto;
    padding-top: 6px;
    transition: opacity 0.2s;
}
.yc3-yt-link:hover { opacity: 0.7; }

/* Spinner de carregamento */
.yc3-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--blue, #00AEEF);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 40px auto;
}
.yc3-spinner.hidden { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Estado vazio / erro */
.yc3-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    line-height: 1.75;
}

/* ── Responsivo ── */
@media (max-width: 639px) {
    .yc3-swiper .yc3-prev,
    .yc3-swiper .yc3-next { display: none; }
    .yc3-info  { padding: 14px; }
    .yc3-title { font-size: 0.85rem; }
}
