:root {
    --bl-navy: rgb(25, 53, 105);
    --bl-navy-deep: rgb(15, 35, 70);
    --bl-cyan: #00d4ff;
    --bl-bg: #f5f7fb;
    --bl-ink: #1f2937;
    --bl-muted: #6b7280;
    --bl-radius: 1.1rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--bl-ink);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.fw-bold.display-5 {
    font-family: 'Poppins', sans-serif;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

/* ---------- Hero ---------- */
.hero-contact {
    position: relative;
    padding: 5rem 0 4.5rem;
    background:
        linear-gradient(120deg, rgba(15, 35, 70, 0.82) 0%, rgba(25, 53, 105, 0.72) 100%),
        url('../imagens/talk\ us.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-contact::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 6px;
    background: linear-gradient(90deg, var(--bl-cyan), var(--bl-navy) 60%, var(--bl-cyan));
    background-size: 200% 100%;
    animation: bl-flow 6s linear infinite;
}

@keyframes bl-flow {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #e7f8ff;
    background: rgba(0, 212, 255, 0.14);
    border: 1px solid rgba(0, 212, 255, 0.35);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bl-cyan);
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.6);
    animation: bl-pulse 2s ease-out infinite;
}

@keyframes bl-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.55);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(0, 212, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
}

.hero-contact h1 {
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero-contact .lead {
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-contact .badge {
    background: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
}

/* ---------- Section background ---------- */
.contacts-section {
    background: var(--bl-bg);
}

/* ---------- Cards ---------- */
.contact-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(25, 53, 105, 0.06);
    border-radius: var(--bl-radius);
    background: #ffffff;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1.25rem 2.5rem rgba(15, 35, 70, 0.1) !important;
}

.map-wrapper {
    border-radius: 0.85rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.25rem rgba(15, 35, 70, 0.08);
    border: 1px solid rgba(25, 53, 105, 0.08);
}

.info-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(25, 53, 105, 0.1), rgba(0, 212, 255, 0.14));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--bl-navy);
    font-size: 1.35rem;
}

.contact-detail-item {
    border-bottom: 1px dashed rgba(25, 53, 105, 0.12);
    padding-bottom: 1.1rem;
    margin-bottom: 1.1rem;
}

.contact-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.contact-detail-item i {
    color: var(--bl-navy);
}

.contact-detail-item strong {
    font-size: 0.92rem;
    letter-spacing: 0.01em;
}

.btn-outline-custom {
    border: 2px solid var(--bl-navy);
    color: var(--bl-navy);
    background: transparent;
    font-weight: 600;
    transition: all 0.25s;
}

.btn-outline-custom:hover {
    background: var(--bl-navy);
    color: white;
    border-color: var(--bl-navy);
}

.social-link-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(25, 53, 105, 0.08);
    border-radius: 50%;
    transition: all 0.2s;
    color: var(--bl-navy);
    text-decoration: none;
}

.social-link-circle:hover {
    background: var(--bl-navy);
    color: white;
    transform: translateY(-3px);
}

.trust-strip {
    background: linear-gradient(135deg, rgba(25, 53, 105, 0.04), rgba(0, 212, 255, 0.06));
    border: 1px dashed rgba(25, 53, 105, 0.18);
}

/* ---------- Form ---------- */
.form-control,
.form-select {
    border-radius: 0.6rem;
    border: 1px solid rgba(25, 53, 105, 0.16);
    padding: 0.65rem 0.9rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--bl-navy);
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.18);
}

.btn-send {
    background: linear-gradient(135deg, var(--bl-navy), var(--bl-navy-deep));
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-send:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 0.75rem 1.5rem rgba(15, 35, 70, 0.25);
}

.btn-send:disabled {
    opacity: 0.75;
    cursor: progress;
}

.spinner-border-sm-custom {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

#formFeedbackMsg[data-state="success"] {
    color: #16794f;
}

#formFeedbackMsg[data-state="error"] {
    color: #b3261e;
}

@media (max-width: 768px) {
    .hero-contact {
        padding: 3.5rem 0 3rem;
    }

    .hero-contact h1 {
        font-size: 2rem;
    }
}