/* 
   SOS ABERTURAS - Estilos do Site de Chaveiro
   CSS principal
*/

/* Variáveis CSS */
:root {
    --primary-color: #12666a;
    --secondary-color: #173f43;
    --accent-color: #c8563d;
    --accent-hover: #a94330;
    --graphite-color: #292e2d;
    --text-color: #263332;
    --text-muted: #667372;
    --bg-light: #f2f7f6;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: #ffffff !important;
    padding: 0.55rem 0;
    box-shadow: 0 3px 14px rgba(17, 48, 50, 0.1);
}

img {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.brand-logo {
    width: 145px;
    height: 69px;
    object-fit: cover;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-light .navbar-nav .nav-phone {
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    padding-right: 1rem;
    padding-left: 1rem;
}

.navbar-light .navbar-nav .nav-phone:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Hero Section */
.hero-section {
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.11), transparent 24%),
        linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 20px 0;
}

.hero-section h1 {
    font-size: 2rem;
    line-height: 1.2;
}

.hero-section:not(.home-hero) .lead {
    font-size: 1.05rem;
}

.home-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 6% 15%, rgba(18, 102, 106, 0.1), transparent 26%),
        linear-gradient(120deg, #f7fbfa 0%, #e8f3f1 100%);
    color: var(--text-color);
    padding: 72px 0;
}

.home-hero::after {
    content: "";
    position: absolute;
    top: -130px;
    right: -100px;
    width: 390px;
    height: 390px;
    border: 70px solid rgba(18, 102, 106, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.home-hero .container {
    position: relative;
    z-index: 1;
}

.home-hero h1 {
    color: var(--secondary-color);
    font-size: clamp(2.35rem, 4vw, 3.8rem);
}

.home-hero .lead {
    max-width: 610px;
    color: #4b5d5c;
}

.home-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 0.45rem 0.85rem;
    border-radius: 30px;
    background: rgba(18, 102, 106, 0.1);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03rem;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.2rem;
}

.hero-benefits span {
    color: var(--secondary-color);
    font-size: 0.94rem;
    font-weight: 600;
}

.hero-benefits i {
    width: 22px;
    height: 22px;
    margin-right: 0.25rem;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    line-height: 22px;
    text-align: center;
}

.hero-whatsapp {
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    font-weight: 600;
}

.hero-whatsapp:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.hero-image-frame {
    position: relative;
    max-width: 620px;
    margin-left: auto;
    padding: 8px;
    border: 1px solid rgba(18, 102, 106, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 20px 45px rgba(8, 35, 37, 0.18);
}

.hero-image {
    display: block;
    width: 100%;
    height: 410px;
    border-radius: 17px;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 20px 0;
        text-align: center;
    }

    .home-hero {
        padding: 48px 0;
    }
    
    .hero-section h1 {
        font-size: 1.7rem;
    }

    .hero-benefits,
    .home-hero .d-flex {
        justify-content: center;
    }

    .hero-image-frame {
        margin-right: auto;
    }

    .hero-image {
        height: 320px;
    }
}

/* Service Cards */
.service-item {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(18, 102, 106, 0.14);
    border-radius: 20px;
    background: linear-gradient(160deg, #ffffff 45%, #edf7f6 100%);
    box-shadow: 0 8px 24px rgba(23, 63, 67, 0.09);
}

.service-item:hover {
    transform: translateY(-7px);
    border-color: rgba(18, 102, 106, 0.3);
    box-shadow: 0 16px 34px rgba(23, 63, 67, 0.16);
}

.service-image-wrap {
    height: 190px;
    overflow: hidden;
    background: #dcefed;
}

.service-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    transition: transform 0.4s ease;
}

.service-image-contain {
    padding: 10px;
    background-color: #ffffff;
    object-fit: contain;
}

.service-item:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    margin: -3.9rem auto 1.1rem;
    border: 5px solid white;
    border-radius: 50%;
    background: #dcefed;
    font-size: 2.65rem;
    box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.65);
}

.service-item .card-title {
    color: var(--secondary-color);
    font-weight: 700;
}

.service-item .card-text {
    flex-grow: 1;
}

.service-item .btn-outline-primary {
    margin-top: 0.5rem;
    padding: 0.65rem 1.25rem;
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    background-color: transparent;
    color: var(--accent-color);
    font-weight: 600;
}

.service-item .btn-outline-primary:hover {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: white;
}

/* Botões */
.cta-button {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    color: white;
    transform: scale(1.05);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f4f9f8, #e4f1ef);
    color: var(--text-color);
    padding: 28px 0 12px;
    border-top: 1px solid rgba(18, 102, 106, 0.13);
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer h5 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.footer .text-muted {
    color: var(--text-muted) !important;
}

.footer hr {
    border-color: rgba(23, 63, 67, 0.25);
}

.footer ul li {
    margin-bottom: 0.3rem;
}

.footer .row > [class*="col-"] {
    margin-bottom: 0.75rem !important;
}

.compact-final-cta,
section[style*="background: linear-gradient(135deg"] {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.compact-final-cta h2,
section[style*="background: linear-gradient(135deg"] h2 {
    margin-bottom: 0.5rem !important;
}

.compact-final-cta p,
section[style*="background: linear-gradient(135deg"] p {
    margin-bottom: 1rem !important;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20b857;
    color: white;
    transform: scale(1.1);
}

/* Seção de Diferenciais */
.bg-light {
    background-color: var(--bg-light) !important;
}

/* Cards de Depoimentos */
.depoimento-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-3px);
}

.review-card {
    position: relative;
    padding: 1.75rem;
    border: 1px solid rgba(18, 102, 106, 0.14);
    border-radius: 22px;
    background: linear-gradient(160deg, #ffffff, #edf7f6);
    box-shadow: 0 12px 32px rgba(23, 63, 67, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
}

.review-avatar {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    border: 3px solid white;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 16px rgba(23, 63, 67, 0.18);
    pointer-events: none;
}

.review-avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.review-name {
    margin: 0 0 0.25rem;
    color: var(--secondary-color);
    font-size: 1.05rem;
    font-weight: 700;
}

.review-stars {
    color: #e5a900;
    font-size: 0.85rem;
    letter-spacing: 0.08rem;
}

.review-text {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.65;
}

/* Zonas de Intervenção */
.location-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
    color: var(--secondary-color);
    font-weight: 600;
    background: #fff;
    border: 1px solid rgba(18, 102, 106, 0.14);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(8, 35, 37, 0.07);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.location-item i {
    color: #c8563d;
}

.location-item:hover,
.location-item:focus-visible {
    color: var(--primary-color);
    border-color: rgba(18, 102, 106, 0.38);
    box-shadow: 0 8px 22px rgba(8, 35, 37, 0.13);
    transform: translateY(-2px);
}

.location-item:focus-visible {
    outline: 3px solid rgba(18, 102, 106, 0.2);
    outline-offset: 2px;
}

.location-item .location-arrow {
    margin-left: auto;
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.location-item:hover .location-arrow {
    transform: translateX(3px);
}

.attention-card {
    padding: 1.75rem 1.35rem;
    background: #fff;
    border: 1px solid rgba(18, 102, 106, 0.14);
    border-radius: 16px;
    box-shadow: 0 7px 22px rgba(8, 35, 37, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.attention-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(8, 35, 37, 0.13);
}

.attention-card > i {
    display: inline-flex;
    width: 3.4rem;
    height: 3.4rem;
    margin-bottom: 1rem;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    font-size: 1.35rem;
}

.attention-card h3 {
    margin-bottom: 0.65rem;
    color: var(--secondary-color);
    font-size: 1.15rem;
    font-weight: 700;
}

.attention-card p {
    margin-bottom: 0;
    color: #647477;
    line-height: 1.65;
}

.local-service-info {
    position: relative;
    padding: 2rem 2.2rem;
    overflow: hidden;
    background: linear-gradient(145deg, #f5faf9, #edf6f5);
    border: 1px solid rgba(18, 102, 106, 0.14);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(8, 35, 37, 0.07);
}

.local-service-info::after {
    position: absolute;
    top: -45px;
    right: -45px;
    width: 130px;
    height: 130px;
    background: rgba(18, 102, 106, 0.06);
    border-radius: 50%;
    content: "";
}

.local-service-info > p,
.local-service-detail p {
    color: #5d7073;
    line-height: 1.72;
}

.local-service-detail {
    display: flex;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    align-items: flex-start;
    gap: 1rem;
    border-top: 1px solid rgba(18, 102, 106, 0.13);
}

.local-service-detail > i {
    display: inline-flex;
    width: 2.7rem;
    height: 2.7rem;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--primary-color);
    border-radius: 50%;
    flex: 0 0 auto;
}

.local-hero-actions {
    display: flex;
    margin-top: 1.6rem;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.local-trust-line {
    display: flex;
    margin-top: 1.35rem;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.7rem 1.4rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
}

.local-trust-line span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.local-trust-line i {
    color: #ffcf72;
}

.local-faq-section {
    background: #f5faf9;
}

.local-faq {
    max-width: 850px;
    overflow: hidden;
    border: 1px solid rgba(18, 102, 106, 0.13);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(8, 35, 37, 0.07);
}

.local-faq .accordion-item {
    border: 0;
    border-bottom: 1px solid rgba(18, 102, 106, 0.11);
}

.local-faq .accordion-item:last-child {
    border-bottom: 0;
}

.local-faq .accordion-button {
    padding: 1.15rem 1.3rem;
    color: var(--secondary-color);
    background: #fff;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: none;
}

.local-faq .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: #eef7f6;
}

.local-faq .accordion-button:focus {
    box-shadow: inset 0 0 0 2px rgba(18, 102, 106, 0.15);
}

.local-faq .accordion-body {
    padding: 1rem 1.3rem 1.25rem;
    color: #5d7073;
    line-height: 1.7;
}

.local-service-detail h3 {
    margin-bottom: 0.35rem;
    color: var(--secondary-color);
    font-size: 1.08rem;
    font-weight: 700;
}

.local-service-detail p {
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .local-service-info {
        padding: 1.5rem;
    }
}

.why-us-section {
    padding: 2rem 0 1.5rem;
}

.why-us-heading {
    margin-bottom: 1.6rem;
}

.why-us-section h4 {
    margin-bottom: 0.35rem;
}

.why-us-section p {
    margin-bottom: 0;
}

.why-us-section .fa-3x {
    font-size: 2.35em;
}

.registered-mark {
    position: relative;
    top: -0.15em;
    margin-left: 0.08em;
    font-size: 0.42em;
    line-height: 0;
}

.coverage-section {
    position: relative;
    overflow: hidden;
    background-color: #f3f8f7;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(18, 102, 106, 0.11) 0 3px, transparent 4px),
        radial-gradient(circle at 75% 65%, rgba(200, 86, 61, 0.12) 0 3px, transparent 4px),
        linear-gradient(32deg, transparent 46%, rgba(18, 102, 106, 0.07) 47% 48%, transparent 49%),
        linear-gradient(145deg, transparent 45%, rgba(18, 102, 106, 0.06) 46% 47%, transparent 48%);
    background-size: 180px 150px, 220px 180px, 240px 160px, 280px 190px;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 0.4rem;
    color: var(--accent-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.coverage-card {
    display: block;
    position: relative;
    padding: 1.6rem 1.6rem 1.5rem;
    border: 1px solid rgba(18, 102, 106, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 26px rgba(23, 63, 67, 0.1);
    color: inherit;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 32px rgba(23, 63, 67, 0.15);
    color: inherit;
}

.coverage-card:focus-visible {
    outline: 3px solid rgba(200, 86, 61, 0.45);
    outline-offset: 3px;
}

.coverage-card h3 {
    margin: 0 0 0.75rem;
    padding-right: 2rem;
    color: var(--secondary-color);
    font-size: 1.15rem;
    font-weight: 700;
}

.coverage-card p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.65;
}

.coverage-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--accent-color);
    font-size: 1.15rem;
}

/* Página 404 */
.error-hero {
    overflow: hidden;
    padding: 70px 0;
    background:
        radial-gradient(circle at 8% 15%, rgba(18, 102, 106, 0.11), transparent 25%),
        linear-gradient(120deg, #f9fbfa 0%, #e8f2f0 100%);
}

.error-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.8rem;
    border-radius: 30px;
    background: rgba(18, 102, 106, 0.1);
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.error-code {
    display: flex;
    align-items: center;
    margin: 0.65rem 0 0.2rem;
    color: var(--secondary-color);
    font-size: clamp(6rem, 12vw, 10rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.5rem;
}

.error-code-lock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.78em;
    height: 0.78em;
    margin: 0 0.12em;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    font-size: 0.62em;
    letter-spacing: 0;
    box-shadow: 0 8px 22px rgba(200, 86, 61, 0.24);
}

.error-hero h1 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.error-description {
    max-width: 620px;
    margin-bottom: 1.6rem;
    color: #526260;
    font-size: 1.08rem;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.6rem;
}

.error-home-button {
    padding: 12px 25px;
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    background: var(--secondary-color);
    color: white;
    font-weight: 700;
}

.error-home-button:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.error-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--secondary-color);
    text-decoration: none;
}

.error-phone > span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    color: var(--accent-color);
}

.error-phone small,
.error-phone strong {
    display: block;
}

.error-phone strong {
    font-size: 1.15rem;
}

.error-image-frame {
    position: relative;
    padding: 9px;
    border-radius: 26px;
    background: white;
    box-shadow: 0 22px 50px rgba(23, 63, 67, 0.2);
}

.error-image-frame img {
    display: block;
    width: 100%;
    height: 480px;
    border-radius: 19px;
    object-fit: cover;
    pointer-events: none;
}

.error-image-badge {
    position: absolute;
    right: -15px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    background: var(--accent-color);
    color: white;
    box-shadow: 0 10px 25px rgba(200, 86, 61, 0.28);
}

.error-image-badge i {
    font-size: 1.7rem;
}

.error-services {
    padding: 24px 0;
    border-top: 1px solid rgba(18, 102, 106, 0.12);
    background: white;
}

.error-service {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    height: 100%;
    padding: 0.8rem;
}

.error-service > i {
    color: var(--accent-color);
    font-size: 1.6rem;
}

.error-service strong,
.error-service small {
    display: block;
}

.error-service strong {
    color: var(--secondary-color);
}

.error-service small {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .error-hero {
        padding: 50px 0;
        text-align: center;
    }

    .error-code,
    .error-actions {
        justify-content: center;
    }

    .error-phone {
        text-align: left;
    }

    .error-image-frame img {
        height: 340px;
    }

    .error-image-badge {
        right: 18px;
    }
}

/* Ícones de Diferenciais */
.fa-3x {
    font-size: 2.5rem;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Formulário de Contato */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 115, 232, 0.25);
}

/* Página de Serviços */
.servico-detalhe {
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.servico-detalhe:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

/* Página Sobre */
.sobre-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-trademark {
    padding: 1rem 1.1rem;
    color: var(--secondary-color);
    background: rgba(18, 102, 106, 0.07);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 10px 10px 0;
    line-height: 1.65;
}

/* Utilitários */
.section-padding {
    padding: 80px 0;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Estrelas de Avaliação */
.text-warning {
    color: #ffc107 !important;
}

/* Links de ação */
.action-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.action-link:hover {
    color: var(--secondary-color);
}

/* Responsividade adicional */
@media (max-width: 576px) {
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .brand-logo {
        width: 120px;
        height: 57px;
    }
}

.footer-brand {
    line-height: 0;
}

.footer-logo {
    width: 145px;
    height: 68px;
    object-fit: cover;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-form-shell {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.6fr);
    max-width: 1080px;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(18, 102, 106, 0.14);
    border-radius: 22px;
    box-shadow: 0 16px 45px rgba(8, 35, 37, 0.13);
}

.contact-form-aside {
    display: flex;
    padding: 2.5rem 2rem;
    color: #fff;
    background: linear-gradient(155deg, var(--primary-color), var(--secondary-color));
    flex-direction: column;
}

.contact-form-eyebrow {
    margin-bottom: 0.7rem;
    color: #ffcf72;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.contact-form-aside h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 750;
}

.contact-form-aside > p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.contact-form-benefits {
    display: grid;
    margin: 1.2rem 0 2rem;
    padding: 0;
    gap: 1.15rem;
    list-style: none;
}

.contact-form-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-form-benefits li > i {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    background: #ffcf72;
    border-radius: 50%;
    font-size: 0.85rem;
    flex: 0 0 auto;
}

.contact-form-benefits strong,
.contact-form-benefits small {
    display: block;
}

.contact-form-benefits small {
    margin-top: 0.15rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
}

.contact-urgent-box {
    display: flex;
    margin-top: auto;
    padding: 1rem;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

.contact-urgent-box > i {
    color: #ffcf72;
    font-size: 1.35rem;
}

.contact-urgent-box strong,
.contact-urgent-box span {
    display: block;
}

.contact-urgent-box span {
    font-size: 0.85rem;
}

.contact-urgent-box a {
    color: #fff;
    font-weight: 700;
}

.contact-form-panel {
    padding: 2.5rem;
}

.contact-form-heading {
    display: flex;
    margin-bottom: 2rem;
    align-items: center;
    gap: 1rem;
}

.contact-form-heading h2 {
    margin: 0 0 0.25rem;
    color: var(--secondary-color);
    font-size: 1.65rem;
    font-weight: 750;
}

.contact-form-heading p,
.contact-form-submit p {
    margin: 0;
    color: #708083;
    font-size: 0.88rem;
}

.contact-form-icon {
    display: inline-flex;
    width: 3.25rem;
    height: 3.25rem;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--primary-color);
    border-radius: 13px;
    font-size: 1.25rem;
    box-shadow: 0 7px 18px rgba(18, 102, 106, 0.22);
}

.contact-form-panel .form-label {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-form-panel .form-label i {
    width: 1.15rem;
    color: var(--primary-color);
}

.contact-form-panel .form-control,
.contact-form-panel .form-select {
    min-height: 50px;
    border-color: #d8e4e3;
    border-radius: 10px;
    background-color: #fbfdfd;
}

.contact-form-panel textarea.form-control {
    min-height: 125px;
}

.contact-form-panel .form-control:focus,
.contact-form-panel .form-select:focus {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(18, 102, 106, 0.12);
}

.contact-upload-box {
    padding: 1rem 1.1rem;
    background: #f4f9f8;
    border: 1px dashed rgba(18, 102, 106, 0.35);
    border-radius: 12px;
}

.contact-form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.contact-form-submit p {
    max-width: 340px;
}

.contact-submit-button {
    min-width: 205px;
    border: 0;
}

.contact-submit-button:disabled {
    cursor: wait;
    opacity: 0.7;
}

@media (max-width: 991px) {
    .contact-form-shell {
        grid-template-columns: 1fr;
    }

    .contact-form-aside,
    .contact-form-panel {
        padding: 2rem;
    }
}

@media (max-width: 575px) {
    .contact-form-aside,
    .contact-form-panel {
        padding: 1.5rem;
    }

    .contact-form-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-submit-button {
        width: 100%;
    }
}

.legal-page {
    max-width: 900px;
}

.legal-page h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-size: 1.35rem;
    font-weight: 700;
}

.legal-page p {
    color: #526568;
    line-height: 1.75;
}

.footer-legal a {
    color: inherit;
}

.site-legal-bar {
    padding: 1rem 0 1.25rem;
    color: var(--secondary-color);
    background: #edf7f6;
    border-top: 1px solid rgba(18, 102, 106, 0.08);
}

.site-legal-bar p {
    font-size: 0.95rem;
}

.site-legal-bar a {
    color: var(--secondary-color);
    text-decoration: none;
}

.site-legal-bar a:hover,
.site-legal-bar a:focus-visible {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner {
    position: fixed;
    z-index: 1100;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    padding: 1rem 1.15rem;
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(18, 102, 106, 0.2);
    border-radius: 14px;
    box-shadow: 0 12px 38px rgba(8, 35, 37, 0.2);
}

.cookie-banner-content {
    display: flex;
    max-width: 1120px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner p {
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
}

.cookie-actions {
    display: flex;
    flex-shrink: 0;
    gap: 0.65rem;
}

.cookie-settings-button {
    position: fixed;
    z-index: 1050;
    bottom: 1rem;
    left: 1rem;
    padding: 0.45rem 0.7rem;
    color: var(--secondary-color);
    background: #fff;
    border: 1px solid rgba(18, 102, 106, 0.25);
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(8, 35, 37, 0.12);
    font-size: 0.8rem;
}

@media (max-width: 767px) {
    .cookie-banner-content,
    .cookie-actions {
        align-items: stretch;
        flex-direction: column;
    }

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

    .local-hero-actions a {
        width: 100%;
    }
}
