
    /* ===== CORES DO TESTE.PHP ===== */
:root {
    --brand: #0ea5e9;
    --brand-2: #0284c7;
    --ink: #0f172a;
    --muted: #475569;
    --bg: #f8fafc;
    --card: #ffffff;
    --shadow: 0 8px 24px rgba(2,8,23,.08);
    --radius: 16px;
    --phone: #18006D;
}

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

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
}

a {
    color: var(--brand);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--brand-2);
}

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

.container {
    width: min(1400px, 95vw);
    margin-inline: auto;
}

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand .logo {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.menu {
    display: flex;
    gap: 18px;
    align-items: center;
}

.menu a {
    color: var(--ink);
    font-weight: 600;
    opacity: .9;
    font-size: 15px;
}

.menu a:hover {
    color: var(--brand);
    opacity: 1;
}

.cta {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid transparent;
    box-shadow: var(--shadow);
    cursor: pointer;
    font-size: 14px;
    transition: all .2s;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
}

.btn-primary:hover {
    background: var(--brand-2);
    transform: translateY(-1px);
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: var(--brand);
    border-color: var(--brand);
}

.btn-secondary:hover {
    background: var(--brand);
    color: #fff;
}

.btn-icon {
    gap: 8px;
}

.btn-icon svg {
    width: 18px;
    height: 18px;
}

.phone-inline {
    font-weight: 900;
    color: var(--phone);
    font-size: 18px;
    padding: 6px 10px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    white-space: nowrap;
}

.hamb {
    display: none;
    background: #fff;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

/* ===== HERO (SEM PREÇO) ===== */
.hero {
    background: linear-gradient(180deg, #e6f6ff, transparent 60%);
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 40px;
    margin: 0 0 16px;
    line-height: 1.2;
    color: var(--ink);
}

.hero-lead {
    color: var(--muted);
    font-size: 20px;
    margin: 0 0 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.kpis {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0;
    justify-content: center;
}

.kpis .pill {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.badge {
    display: inline-block;
    background: linear-gradient(90deg, #ff6600 0%, #ff8533 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    margin: 16px 0;
}

/* ===== SECTIONS ===== */
.section {
    padding: 60px 0;
}

.section h2 {
    font-size: 36px;
    margin: 0 0 16px;
    font-weight: 700;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 18px;
    margin: 0 0 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PRICE CARDS GRID ===== */
.price-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.price-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.price-card.featured {
    border-color: #dc2626;
    border-width: 3px;
    position: relative;
}

.price-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f1f5f9;
}

.price-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success {
    background: #10b981;
    color: white;
}

.badge-warning {
    background: #dc2626;
    color: white;
}

.price-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.price-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 16px;
    text-align: center;
}

.price-breakdown {
    margin: 16px 0;
    padding: 16px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.price-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--muted);
    font-size: 15px;
}

.price-line strong {
    color: var(--ink);
}

.price-line.highlight {
    color: #dc2626;
    font-weight: 600;
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
    padding: 16px;
    background: #f0f9ff;
    border-radius: 8px;
}

.price-total-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-total-value {
    font-size: 32px;
    font-weight: 900;
    color: var(--brand);
}

.price-card.featured .price-total {
    background: #fef2f2;
}

.price-card.featured .price-total-value {
    color: #dc2626;
}

.price-additional {
    font-size: 14px;
    color: var(--muted);
    text-align: center;
    margin: 12px 0;
}

.price-additional strong {
    color: var(--ink);
}

.price-card-footer {
    padding: 0 24px 24px;
}

.price-card-footer .btn {
    width: 100%;
    justify-content: center;
}

/* ===== ALERT BOX ===== */
.alert-box {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
}

.alert-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.alert-box-header svg {
    width: 28px;
    height: 28px;
    color: #f59e0b;
    flex-shrink: 0;
}

.alert-box-header h3 {
    color: #92400e;
    margin: 0;
    font-size: 20px;
}

.alert-box p {
    color: #78350f;
    margin: 12px 0;
    line-height: 1.6;
}

/* ===== SERVICES GRID ===== */



.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service > div:not(.card-thumb) {
    padding: 20px;
    flex-grow: 1;
}

.service h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
}

.service p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

/* ===== ZONE CARDS ===== */

.zone-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    border-color: var(--brand);
}

.zone-card h3 {
    font-size: 22px;
    margin: 0 0 16px;
    color: var(--brand);
    text-align: center;
}

.zone-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.zone-card li {
    padding: 6px 0;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.zone-card li:before {
    content: "✓";
    color: #10b981;
    font-weight: 900;
    font-size: 16px;
}

/* ===== PROBLEM LIST ===== */
.problem-list {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.problem-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    padding: 0;
}

.problem-list ul li {
    padding: 12px;
    background: #f0f9ff;
    border-radius: 8px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}

.problem-list ul li:before {
    content: "✔";
    color: var(--brand);
    font-weight: bold;
}

/* ===== GUARANTEE BOX ===== */
.guarantee-box {
    background: #fef3c7;
    border-left: 5px solid #f59e0b;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.guarantee-box h3 {
    color: #92400e;
    margin-bottom: 12px;
    font-size: 20px;
}

.guarantee-box ul {
    list-style: none;
    padding: 0;
}

.guarantee-box ul li {
    padding: 6px 0;
    color: #78350f;
}

.guarantee-box ul li:before {
    content: "✓";
    margin-right: 10px;
    color: #10b981;
    font-weight: 900;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--brand);
    color: white;
    padding: 48px 32px;
    border-radius: var(--radius);
    text-align: center;
    margin: 48px 0;
}

.cta-section h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.95;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    max-width: 800px;
    margin: 32px auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--ink);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: var(--brand);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.btn-submit:hover {
    background: var(--brand-2);
    transform: translateY(-1px);
}

/* ===== FOOTER ===== */
footer {
    background: #0b1220;
    color: #e5e7eb;
    margin-top: 48px;
}

.footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    padding: 40px 0;
}

footer a {
    color: #e5e7eb;
    transition: color .2s;
}

footer a:hover {
    color: #fff;
}

footer strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 16px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

footer li {
    margin: 6px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hamb {
        display: block;
    }

    .menu {
        display: none;
    }

    .price-cards-grid {
        grid-template-columns: 1fr;
    }


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

    .hero h1 {
        font-size: 32px;
    }

    .section h2 {
        font-size: 28px;
    }
}




.location-link-card {
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    text-decoration: none;
    color: var(--ink);
    transition: all .3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    position: relative;
}

.location-link-card:hover {
    border-color: var(--brand);
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(14,165,233,.2);
}

.location-icon {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1;
}

.location-link-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: var(--brand);
    font-weight: 700;
}

.location-link-card p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--brand);
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
}

.location-link-card:hover .link-arrow {
    gap: 8px;
}

      /* Grid de 4 colunas FORÇADAS em desktop */
  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin: 48px 0;
  }

/* Tablets pequenos - 2 colunas */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - 1 coluna */
@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* Zone card sem link envolvente */
.zone-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.zone-card:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.zone-card h3 {
    color: var(--brand);
    margin-bottom: 16px;
    font-size: 20px;
}

.zone-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.zone-card ul li {
    padding: 6px 0;
    color: var(--muted);
    font-size: 15px;
}

.zone-card ul li:before {
    content: "✓ ";
    color: var(--brand);
    font-weight: bold;
    margin-right: 8px;
}

.zone-card-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.btn-zone {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 15px;
}

.badge-scheduled {
    background: #f59e0b;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}
