/* ============================================================
   ESTILO DA PÁGINA DE CONTACTO - GERTECH
   ============================================================ */

/* Alinha as cores com o :root que definimos no Header */
.contact-section .text-primary {
    color: var(--gertech-blue) !important;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 97, 168, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 97, 168, 0.1);
}

/* Estilização dos ícones com as cores do logo */
.info-icon {
    background: rgba(0, 194, 238, 0.1); /* Fundo ciano clarinho */
    color: var(--gertech-blue-light); /* Ícone ciano */
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Inputs personalizados */
.custom-input {
    border: 2px solid #f1f5f9 !important;
    padding: 12px 18px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
}

.custom-input:focus {
    border-color: var(--gertech-blue-light) !important;
    box-shadow: 0 0 0 4px rgba(0, 194, 238, 0.1) !important;
    outline: none;
}

/* Botão de Enviar com o degradê da marca */
.contact-section .btn-primary {
    background: linear-gradient(135deg, var(--gertech-blue), var(--gertech-blue-light)) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.contact-section .btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 97, 168, 0.3) !important;
}