/* Estilos de Input */
input, textarea, select {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #ff5a2c;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 90, 44, 0.1);
}

/* Estilo da barra fixa inferior conforme referência visual */
.bottom-contact-bar {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    height: 65px;
    display: flex;
    align-items: center;
}

/* Formato Diamante Exato da Imagem */
.diamond-icon-container {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diamond-shape {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #ff5a2c;
    transform: rotate(45deg);
    border-radius: 2px;
}

.diamond-icon-container i {
    position: relative;
    z-index: 10;
    color: white;
    width: 16px;
    height: 16px;
}

/* Estilo do Logótipo */
.logo-container img {
    height: 40px;
    width: auto;
    display: block;
}