/* ═══════════════════════════════════════════════════
   FNG MICROCRÉDITO — Estilos da Página de Contacto
   Carregado apenas em pages/contact.blade.php
═══════════════════════════════════════════════════ */

/* ── 1. HERO ────────────────────────────────────── */
.ct-hero {
    position: relative;
    background: var(--fng-azul);
    padding: 90px 0 80px;
    overflow: hidden;
}

.ct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ct-hero-bg, none) center / cover no-repeat;
    opacity: 0.12;
    z-index: 0;
}

.ct-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199,22,23,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

.ct-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 0.6rem 0 1rem;
}

.ct-hero-sub {
    font-size: 1.05rem;
    color: #b0c4d4;
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto;
}

/* ── 2. CONTACTO RÁPIDO ─────────────────────────── */
.ct-quick-section {
    background: #fff;
    padding: var(--section-py) 0;
}

.ct-quick-card {
    background: var(--fng-azul);
    border-radius: var(--radius-card);
    padding: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    box-shadow: 0 20px 60px rgba(18,33,54,0.15);
    position: relative;
    overflow: hidden;
}

/* Forma decorativa de fundo */
.ct-quick-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199,22,23,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ct-quick-left { flex: 1; min-width: 260px; position: relative; z-index: 1; }

.ct-quick-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(199,22,23,0.15);
    color: #ff8585;
    border: 1px solid rgba(199,22,23,0.28);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 14px;
}

.ct-quick-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.ct-quick-sub {
    font-size: 0.95rem;
    color: #8ab0c8;
    line-height: 1.75;
    max-width: 380px;
    margin-bottom: 18px;
}

.ct-quick-hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #7fa8c0;
}

.ct-quick-hours i { color: var(--fng-vermelho); }

.ct-quick-right {
    text-align: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.ct-quick-phone {
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1;
}

.btn-ct-wapp-big {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 42px;
    border-radius: 30px;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 8px 24px rgba(37,211,102,0.38);
    white-space: nowrap;
}

.btn-ct-wapp-big i { font-size: 1.2rem; }

.btn-ct-wapp-big:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37,211,102,0.48);
    color: #fff;
}

.ct-quick-alt {
    margin-top: 14px;
    font-size: 0.78rem;
    color: #5a7a90;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ── 3. INFORMAÇÕES + FORMULÁRIO ────────────────── */
.ct-main-section {
    background: #f8f9fa;
    padding: var(--section-py) 0;
}

/* Lista de informações */
.ct-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 4px;
}

.ct-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f0f0f0;
    transition: box-shadow var(--transition), transform var(--transition);
}

.ct-info-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateX(4px);
}

.ct-info-icon {
    width: 46px;
    height: 46px;
    background: rgba(199,22,23,0.07);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--fng-vermelho);
    flex-shrink: 0;
}

.ct-info-icon-green { background: rgba(37,211,102,0.1); color: #25D366; }

.ct-info-item h6 {
    font-weight: 700;
    color: var(--fng-azul);
    font-size: 0.87rem;
    margin-bottom: 3px;
}

.ct-info-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.ct-info-item a {
    font-size: 0.9rem;
    color: var(--fng-vermelho);
    font-weight: 600;
    text-decoration: none;
}

.ct-info-item a:hover { text-decoration: underline; }

.btn-ct-wapp-solid {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 0.93rem;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 6px 18px rgba(37,211,102,0.3);
    width: 100%;
    justify-content: center;
}

.btn-ct-wapp-solid:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(37,211,102,0.42);
    color: #fff;
}

/* Formulário */
.ct-form-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 38px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f0f0f0;
}

.ct-form-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.ct-form-icon {
    width: 50px;
    height: 50px;
    background: rgba(199,22,23,0.07);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--fng-vermelho);
    flex-shrink: 0;
}

.ct-form-head h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--fng-azul);
    margin-bottom: 4px;
}

.ct-form-head p {
    font-size: 0.84rem;
    color: #888;
    line-height: 1.55;
    margin: 0;
}

.ct-label {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--fng-azul);
    margin-bottom: 7px;
    display: block;
}

.ct-input {
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    padding: 13px 15px;
    font-size: 0.93rem;
    color: #333;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.ct-input:focus {
    border-color: var(--fng-vermelho);
    box-shadow: 0 0 0 3px rgba(199,22,23,0.1);
    outline: none;
}

.ct-input::placeholder { color: #bbb; }

.btn-ct-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 15px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 0.97rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 6px 18px rgba(37,211,102,0.3);
}

.btn-ct-form-submit i { font-size: 1.1rem; }

.btn-ct-form-submit:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(37,211,102,0.42);
}

.ct-form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 12px 0 0;
    font-size: 0.76rem;
    color: #aaa;
    text-align: center;
}

/* ── 4. MAPA ────────────────────────────────────── */
.ct-map-section {
    background: #fff;
    padding: var(--section-py) 0;
}

.ct-map-wrap {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid #f0f0f0;
}

.ct-map-wrap iframe { display: block; }

.ct-map-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.ct-map-badge i {
    font-size: 1.2rem;
    color: var(--fng-vermelho);
    flex-shrink: 0;
}

.ct-map-badge strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--fng-azul);
    line-height: 1.2;
}

.ct-map-badge span {
    font-size: 0.74rem;
    color: #888;
}

/* ── 5. CONFIANÇA / RESPOSTA ────────────────────── */
.ct-trust-section {
    background: var(--fng-azul);
    padding: 56px 0;
}

.ct-trust-item {
    padding: 10px 20px;
}

.ct-trust-val {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.ct-trust-val i { font-size: 2rem; color: #3de07a; }

.ct-trust-label {
    font-size: 0.86rem;
    color: #7fa8c0;
    line-height: 1.55;
    max-width: 180px;
    margin: 0 auto;
}

.ct-trust-sep {
    width: 1px;
    background: rgba(255,255,255,0.08);
    align-self: stretch;
}

/* ── 6. CTA FINAL ───────────────────────────────── */
.ct-cta-section {
    position: relative;
    background: var(--fng-vermelho);
    padding: var(--section-py) 0;
    overflow: hidden;
}

.ct-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ct-cta-bg, none) center / cover no-repeat;
    opacity: 0.07;
    mix-blend-mode: luminosity;
    z-index: 0;
}

.ct-cta-section::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
    z-index: 0;
}

.ct-cta-section > .container { position: relative; z-index: 1; }

.btn-ct-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: var(--fng-vermelho);
    font-weight: 800;
    padding: 16px 42px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-ct-cta:hover {
    background: #f4f4f4;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    color: var(--fng-vermelho);
}

/* ── Responsivo ─────────────────────────────────── */
@media (max-width: 991px) {
    .ct-hero          { padding: 70px 0 60px; }
    .ct-quick-card    { padding: 36px 30px; flex-direction: column; align-items: flex-start; }
    .ct-quick-right   { width: 100%; }
    .btn-ct-wapp-big  { width: 100%; justify-content: center; }
}

@media (max-width: 575px) {
    .ct-hero-title    { font-size: 2rem; }
    .ct-form-card     { padding: 24px 20px; }
    .ct-quick-card    { padding: 28px 22px; }
    .ct-quick-phone   { font-size: 1.3rem; }
    .ct-trust-val     { font-size: 1.75rem; }
}
