/* ============================================================
   STYLE.CSS - ESTILOS GLOBAIS (VERSÃO 10.10)
   MONTADOR DE MÓVEIS URGENTE - LANDING PAGE
   ============================================================ */

:root {
    --primary: #00D4FF;
    --secondary: #7C3AED;
    --tertiary: #EC4899;
    --gradient: linear-gradient(135deg, #00D4FF, #7C3AED);
    --dark: #0A0A0A;
    --card: #141414;
    --border: rgba(255,255,255,0.06);
    --text: #FFFFFF;
    --text-secondary: #A0A0A0;
    --success: #00FF87;
    --header-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    padding-top: var(--header-height);
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
    transition: box-shadow 0.3s ease;
    width: 100%;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 16px;
}

.logo img {
    height: 36px;
    width: auto;
    max-width: 200px;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--gradient);
    color: #fff;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    display: block;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 80px 0 40px;
    background: var(--dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    margin-bottom: 12px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 20px;
}

.hero p strong {
    color: var(--text);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 14px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    flex-wrap: wrap;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat .number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-stats .stat .label {
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 25px;
    background: var(--border);
}

.hero-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient);
    color: #fff;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 50px rgba(0, 212, 255, 0.5);
}

.btn-primary .arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 60px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    color: var(--text);
    border-color: var(--primary);
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

/* ============================================================
   DEPOIMENTOS - CARROSSEL
   ============================================================ */
.depoimentos {
    padding: 60px 0 40px 0;
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(0, 212, 255, 0.08);
    padding: 4px 14px;
    border-radius: 40px;
    margin-bottom: 6px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
}

.section-header h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    padding: 6px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.depoimento-card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.3s ease;
    width: 100%;
}

.depoimento-card:hover {
    border-color: var(--primary);
}

.depoimento-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.depoimento-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.depoimento-cliente {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cliente-foto {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    flex-shrink: 0;
    background: var(--card);
}

.cliente-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.cliente-info .cliente-local {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.estrelas {
    color: #F59E0B;
    font-size: 0.8rem;
}

.depoimento-texto .aspas {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    display: block;
    margin-bottom: -12px;
}

.depoimento-texto p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 6px 0;
}

.servico-realizado {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

.portfolio-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.portfolio-col img {
    width: 100%;
    max-width: 100%;
    max-height: 280px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--dark);
}

.portfolio-tag {
    display: block;
    text-align: center;
    font-size: 0.65rem;
    color: var(--text-secondary);
    padding: 4px 0;
}

/* ============================================================
   CTAs
   ============================================================ */
.cta-after-carousel {
    text-align: center;
    padding: 30px 0 10px 0;
}

.cta-after-carousel .btn-cta-carousel,
.cta-after-seo .btn-cta-seo,
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--gradient);
    color: #fff;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.cta-after-carousel .btn-cta-carousel:hover,
.cta-after-seo .btn-cta-seo:hover,
.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 50px rgba(0, 212, 255, 0.5);
}

.cta-after-carousel .btn-cta-carousel .arrow,
.cta-after-seo .btn-cta-seo .arrow,
.btn-cta-primary .arrow {
    transition: transform 0.3s ease;
}

.cta-after-carousel .btn-cta-carousel:hover .arrow,
.cta-after-seo .btn-cta-seo:hover .arrow,
.btn-cta-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 60px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.btn-cta-secondary:hover {
    color: var(--text);
    border-color: var(--primary);
}

.cta-after-seo {
    text-align: center;
    margin-top: 24px;
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos {
    padding: 60px 0 40px 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.servico-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.servico-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
}

.servico-card .icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 10px;
}

.servico-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.servico-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
    flex-grow: 1;
}

.btn-servico-card {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    margin-top: 4px;
}

.btn-servico-card:hover {
    background: var(--gradient);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

/* ============================================================
   SEO CONTENT
   ============================================================ */
.seo-content {
    padding: 50px 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
}

.seo-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
}

.seo-content h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text);
}

.seo-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.seo-content ul {
    color: var(--text-secondary);
    padding-left: 20px;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.seo-content ul li {
    margin-bottom: 6px;
}

.seo-content strong {
    color: var(--text);
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais {
    padding: 60px 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.diferencial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.diferencial-card:hover {
    border-color: var(--secondary);
    transform: translateY(-6px);
}

.diferencial-card .icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 8px;
}

.diferencial-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.diferencial-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

.diferencial-number {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(0, 212, 255, 0.05);
    line-height: 1;
}

/* ============================================================
   POR QUE ESCOLHER
   ============================================================ */
.porque-escolher {
    padding: 60px 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
}

.porque-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 36px;
}

.porque-icon {
    font-size: 3rem;
    text-align: center;
    display: block;
    margin-bottom: 8px;
}

.porque-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    color: var(--text);
    margin-bottom: 20px;
}

.porque-lista {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}

.porque-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.porque-item .porque-check {
    flex-shrink: 0;
    font-size: 0.9rem;
    margin-top: 1px;
}

.porque-item strong {
    color: var(--text);
}

/* ============================================================
   CIDADES
   ============================================================ */
.cidades {
    padding: 60px 0 40px 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
}

.cidades-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.cidade-tag-large {
    display: inline-block;
    padding: 8px 22px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 60px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.cidade-tag-large:hover {
    border-color: var(--primary);
    color: var(--text);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.05);
}

.cidades-texto {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.cidades-texto h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    text-align: center;
}

.cidades-texto p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-align: center;
}

.cidades-texto ul {
    color: var(--text-secondary);
    padding-left: 20px;
    font-size: 0.95rem;
}

.cidades-texto ul li {
    margin-bottom: 6px;
}

.cidades-texto ul li strong {
    color: var(--text);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
    padding: 60px 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
}

.cta-box {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--gradient);
    color: #fff;
    border-radius: 40px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 6px;
    position: relative;
}

.cta-box h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-box p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
}

.cta-box p strong {
    color: var(--text);
}

.cta-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.cta-garantia {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    position: relative;
}

.cta-garantia span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ============================================================
   AGENDAMENTO - FORMULÁRIO COMPLETO
   ============================================================ */
.agendamento-form-section {
    padding: 60px 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
}

.agendamento-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 40px;
}

.agendamento-form .form-group {
    margin-bottom: 16px;
}

.agendamento-form .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.agendamento-form .form-group label .required {
    color: #EF4444;
}

.agendamento-form .form-group input,
.agendamento-form .form-group select,
.agendamento-form .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.agendamento-form .form-group input:focus,
.agendamento-form .form-group select:focus,
.agendamento-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.agendamento-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.agendamento-form .form-group select option {
    background: var(--dark);
    color: var(--text);
}

.agendamento-form .form-group input[type="file"] {
    padding: 8px;
    background: var(--dark);
    border: 1px dashed var(--border);
    color: var(--text-secondary);
    cursor: pointer;
}

.agendamento-form .form-group input[type="file"]:hover {
    border-color: var(--primary);
}

.agendamento-form .form-group small {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.agendamento-form .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.agendamento-form .btn-buscar-cep {
    padding: 10px 20px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.agendamento-form .btn-buscar-cep:hover {
    background: var(--gradient);
    color: #fff;
    border-color: var(--primary);
}

.agendamento-form .btn-buscar-cep:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-agendamento-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 32px;
    background: var(--gradient);
    color: #fff;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.3);
    border: none;
    cursor: pointer;
    margin-top: 8px;
    text-decoration: none;
}

.btn-agendamento-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 50px rgba(0, 212, 255, 0.5);
}

.btn-agendamento-submit .arrow {
    transition: transform 0.3s ease;
}

.btn-agendamento-submit:hover .arrow {
    transform: translateX(4px);
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.alert-error {
    background: rgba(239, 68, 68, 0.12);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-success {
    background: rgba(40, 167, 69, 0.12);
    color: #28A745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

/* ============================================================
   FOOTER - CORES CORRIGIDAS (MAIOR CONTRASTE)
   ============================================================ */
.footer {
    padding: 30px 0 16px;
    background: var(--dark);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer .logo img {
    height: 36px;
    width: auto;
    max-width: 200px;
    margin: 0 auto 8px;
}

.footer p {
    color: #9CA3AF;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.footer-social a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.footer-social a:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.1);
}

.footer-bottom {
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.65rem;
    color: #9CA3AF;
    margin: 0;
}

.footer-bottom p:last-child {
    font-size: 0.6rem;
    color: #6B7280;
    margin-top: 4px;
}

/* ============================================================
   BOTÃO PULSANTE
   ============================================================ */
.pulse-btn {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(0, 212, 255, 0); }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.5rem; }
    .servicos-grid { grid-template-columns: repeat(2, 1fr); }
    .depoimento-row { grid-template-columns: 1fr; gap: 16px; }
    .porque-lista { grid-template-columns: 1fr; }
    .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-col img { max-height: 200px; }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .hero {
        padding: 60px 0 30px;
        min-height: auto;
    }
    .hero h1 { font-size: 2rem; }
    .hero p { margin: 0 auto 16px; max-width: 100%; }
    .hero-stats {
        justify-content: center;
        gap: 10px;
        padding: 12px 16px;
    }
    .hero-stats .stat .number { font-size: 1rem; }
    .hero-stats .stat .label { font-size: 0.5rem; }
    .stat-divider { display: none; }
    .hero-cta { justify-content: center; }
    .hero-image { order: -1; }
    .hero-image img { max-width: 100%; }
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    .hero-cta { flex-direction: column; }

    .servicos-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .diferenciais-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

    .depoimento-card { padding: 16px; }
    .depoimento-row { grid-template-columns: 1fr; gap: 12px; }
    .cliente-foto { width: 42px; height: 42px; }
    .depoimento-texto p { font-size: 0.9rem; }
    .portfolio-col img { max-height: 180px; max-width: 100%; }

    .porque-box { padding: 24px 16px; }
    .porque-box h3 { font-size: 1.1rem; }
    .porque-item { font-size: 0.85rem; }

    .cta-box { padding: 24px 16px; }
    .cta-box h2 { font-size: 1.5rem; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn-cta-primary,
    .cta-buttons .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    .cta-garantia { flex-direction: column; gap: 6px; }

    .section-header h2 { font-size: 1.6rem; }
    .btn-header span { display: none; }
    .btn-header { padding: 8px 14px; font-size: 0.7rem; }

    .seo-content h2 { font-size: 1.5rem; }
    .seo-content h3 { font-size: 1.1rem; }
    .seo-content p { font-size: 0.9rem; }
    .seo-content ul { font-size: 0.9rem; }

    .cidade-tag-large { font-size: 0.75rem; padding: 6px 16px; }
    .cidades-texto ul { font-size: 0.85rem; }

    .cta-after-carousel .btn-cta-carousel,
    .cta-after-seo .btn-cta-seo {
        padding: 14px 28px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .agendamento-form-container { padding: 24px 16px; }
    .agendamento-form .form-row-2 { grid-template-columns: 1fr; gap: 0; }
    .agendamento-form .btn-buscar-cep { padding: 10px 14px; font-size: 0.75rem; }

    .logo img { height: 32px; }
    .footer .logo img { height: 30px; }
    .footer-social a { width: 40px; height: 40px; }
    .footer-social a img { width: 20px; height: 20px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .hero-stats {
        gap: 8px;
        padding: 10px 12px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-stats .stat .number { font-size: 0.9rem; }
    .hero-stats .stat .label { font-size: 0.45rem; }

    .servicos-grid { grid-template-columns: 1fr; gap: 10px; }
    .diferenciais-grid { grid-template-columns: 1fr; gap: 10px; }

    .depoimento-card { padding: 14px; }
    .depoimento-cliente { flex-direction: column; text-align: center; }
    .cliente-foto { width: 40px; height: 40px; }
    .depoimento-texto p { font-size: 0.85rem; }
    .depoimento-texto .aspas { font-size: 2rem; }
    .portfolio-col img { max-height: 140px; max-width: 100%; }

    .porque-box { padding: 16px 12px; }
    .porque-box h3 { font-size: 1rem; }
    .porque-item { font-size: 0.8rem; padding: 4px 0; }

    .cidade-tag-large { font-size: 0.7rem; padding: 4px 12px; }
    .cidades-texto ul { font-size: 0.8rem; padding-left: 16px; }

    .cta-box h2 { font-size: 1.2rem; }
    .cta-box p { font-size: 0.9rem; }
    .btn-cta-primary { font-size: 0.85rem; padding: 12px 20px; }
    .btn-cta-secondary { font-size: 0.85rem; padding: 12px 20px; }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 14px;
        right: 14px;
    }
    .whatsapp-float svg { width: 22px; height: 22px; }

    .logo img { height: 28px; }
    .btn-header { font-size: 0.65rem; padding: 6px 12px; }

    .seo-content { padding: 30px 0; }
    .seo-content h2 { font-size: 1.3rem; }
    .seo-content h3 { font-size: 1rem; }

    .section-header h2 { font-size: 1.3rem; }
    .servico-card { padding: 16px 12px; }
    .servico-card .icon { font-size: 2rem; }
    .servico-card h3 { font-size: 0.85rem; }
    .servico-card p { font-size: 0.75rem; }
    .btn-servico-card { font-size: 0.7rem; padding: 6px 16px; }

    .diferencial-card { padding: 16px 12px; }
    .diferencial-card .icon { font-size: 1.8rem; }
    .diferencial-card h3 { font-size: 0.85rem; }
    .diferencial-card p { font-size: 0.75rem; }
    .diferencial-number { font-size: 1.5rem; top: 4px; right: 8px; }

    .footer { padding: 20px 0 12px; }
    .footer .logo img { height: 26px; }
    .footer p { font-size: 0.75rem; }
    .footer-social a { width: 38px; height: 38px; }
    .footer-social a img { width: 18px; height: 18px; }

    .cta-after-carousel .btn-cta-carousel,
    .cta-after-seo .btn-cta-seo {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .carousel-wrapper { border-radius: 12px; }

    .agendamento-form-container { padding: 16px 12px; }
    .agendamento-form .form-group input,
    .agendamento-form .form-group select,
    .agendamento-form .form-group textarea {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    .agendamento-form .btn-buscar-cep { font-size: 0.65rem; padding: 8px 10px; }
    .btn-agendamento-submit { font-size: 0.85rem; padding: 12px 20px; }
}